EvalDevToolModulePlugin.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. MIT License http://www.opensource.org/licenses/mit-license.php
  3. Author Tobias Koppers @sokra
  4. */
  5. "use strict";
  6. const { ConcatSource, RawSource } = require("webpack-sources");
  7. const ExternalModule = require("./ExternalModule");
  8. const ModuleFilenameHelpers = require("./ModuleFilenameHelpers");
  9. const JavascriptModulesPlugin = require("./javascript/JavascriptModulesPlugin");
  10. /** @typedef {import("webpack-sources").Source} Source */
  11. /** @typedef {import("./Compiler")} Compiler */
  12. /** @type {WeakMap<Source, Source>} */
  13. const cache = new WeakMap();
  14. const devtoolWarning = new RawSource(`/*
  15. * ATTENTION: The "eval" devtool has been used (maybe by default in mode: "development").
  16. * This devtool is neither made for production nor for readable output files.
  17. * It uses "eval()" calls to create a separate source file in the browser devtools.
  18. * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
  19. * or disable the default devtool with "devtool: false".
  20. * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
  21. */
  22. `);
  23. class EvalDevToolModulePlugin {
  24. constructor(options) {
  25. this.namespace = options.namespace || "";
  26. this.sourceUrlComment = options.sourceUrlComment || "\n//# sourceURL=[url]";
  27. this.moduleFilenameTemplate =
  28. options.moduleFilenameTemplate ||
  29. "webpack://[namespace]/[resourcePath]?[loaders]";
  30. }
  31. /**
  32. * Apply the plugin
  33. * @param {Compiler} compiler the compiler instance
  34. * @returns {void}
  35. */
  36. apply(compiler) {
  37. compiler.hooks.compilation.tap("EvalDevToolModulePlugin", compilation => {
  38. const hooks = JavascriptModulesPlugin.getCompilationHooks(compilation);
  39. hooks.renderModuleContent.tap(
  40. "EvalDevToolModulePlugin",
  41. (source, module, { runtimeTemplate, chunkGraph }) => {
  42. const cacheEntry = cache.get(source);
  43. if (cacheEntry !== undefined) return cacheEntry;
  44. if (module instanceof ExternalModule) {
  45. cache.set(source, source);
  46. return source;
  47. }
  48. const content = source.source();
  49. const str = ModuleFilenameHelpers.createFilename(
  50. module,
  51. {
  52. moduleFilenameTemplate: this.moduleFilenameTemplate,
  53. namespace: this.namespace
  54. },
  55. {
  56. requestShortener: runtimeTemplate.requestShortener,
  57. chunkGraph,
  58. hashFunction: compilation.outputOptions.hashFunction
  59. }
  60. );
  61. const footer =
  62. "\n" +
  63. this.sourceUrlComment.replace(
  64. /\[url\]/g,
  65. encodeURI(str)
  66. .replace(/%2F/g, "/")
  67. .replace(/%20/g, "_")
  68. .replace(/%5E/g, "^")
  69. .replace(/%5C/g, "\\")
  70. .replace(/^\//, "")
  71. );
  72. const result = new RawSource(
  73. `eval(${JSON.stringify(content + footer)});`
  74. );
  75. cache.set(source, result);
  76. return result;
  77. }
  78. );
  79. hooks.inlineInRuntimeBailout.tap(
  80. "EvalDevToolModulePlugin",
  81. () => "the eval devtool is used."
  82. );
  83. hooks.render.tap(
  84. "EvalDevToolModulePlugin",
  85. source => new ConcatSource(devtoolWarning, source)
  86. );
  87. hooks.chunkHash.tap("EvalDevToolModulePlugin", (chunk, hash) => {
  88. hash.update("EvalDevToolModulePlugin");
  89. hash.update("2");
  90. });
  91. });
  92. }
  93. }
  94. module.exports = EvalDevToolModulePlugin;