EvalSourceMapDevToolPlugin.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  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 ModuleFilenameHelpers = require("./ModuleFilenameHelpers");
  8. const NormalModule = require("./NormalModule");
  9. const SourceMapDevToolModuleOptionsPlugin = require("./SourceMapDevToolModuleOptionsPlugin");
  10. const JavascriptModulesPlugin = require("./javascript/JavascriptModulesPlugin");
  11. const ConcatenatedModule = require("./optimize/ConcatenatedModule");
  12. const { makePathsAbsolute } = require("./util/identifier");
  13. /** @typedef {import("webpack-sources").Source} Source */
  14. /** @typedef {import("../declarations/WebpackOptions").DevTool} DevToolOptions */
  15. /** @typedef {import("../declarations/plugins/SourceMapDevToolPlugin").SourceMapDevToolPluginOptions} SourceMapDevToolPluginOptions */
  16. /** @typedef {import("./Compiler")} Compiler */
  17. /** @type {WeakMap<Source, Source>} */
  18. const cache = new WeakMap();
  19. const devtoolWarning = new RawSource(`/*
  20. * ATTENTION: An "eval-source-map" devtool has been used.
  21. * This devtool is neither made for production nor for readable output files.
  22. * It uses "eval()" calls to create a separate source file with attached SourceMaps in the browser devtools.
  23. * If you are trying to read the output file, select a different devtool (https://webpack.js.org/configuration/devtool/)
  24. * or disable the default devtool with "devtool: false".
  25. * If you are looking for production-ready output files, see mode: "production" (https://webpack.js.org/configuration/mode/).
  26. */
  27. `);
  28. class EvalSourceMapDevToolPlugin {
  29. /**
  30. * @param {SourceMapDevToolPluginOptions|string} inputOptions Options object
  31. */
  32. constructor(inputOptions) {
  33. /** @type {SourceMapDevToolPluginOptions} */
  34. let options;
  35. if (typeof inputOptions === "string") {
  36. options = {
  37. append: inputOptions
  38. };
  39. } else {
  40. options = inputOptions;
  41. }
  42. this.sourceMapComment =
  43. options.append || "//# sourceURL=[module]\n//# sourceMappingURL=[url]";
  44. this.moduleFilenameTemplate =
  45. options.moduleFilenameTemplate ||
  46. "webpack://[namespace]/[resource-path]?[hash]";
  47. this.namespace = options.namespace || "";
  48. this.options = options;
  49. }
  50. /**
  51. * Apply the plugin
  52. * @param {Compiler} compiler the compiler instance
  53. * @returns {void}
  54. */
  55. apply(compiler) {
  56. const options = this.options;
  57. compiler.hooks.compilation.tap(
  58. "EvalSourceMapDevToolPlugin",
  59. compilation => {
  60. const hooks = JavascriptModulesPlugin.getCompilationHooks(compilation);
  61. new SourceMapDevToolModuleOptionsPlugin(options).apply(compilation);
  62. const matchModule = ModuleFilenameHelpers.matchObject.bind(
  63. ModuleFilenameHelpers,
  64. options
  65. );
  66. hooks.renderModuleContent.tap(
  67. "EvalSourceMapDevToolPlugin",
  68. (source, m, { runtimeTemplate, chunkGraph }) => {
  69. const cachedSource = cache.get(source);
  70. if (cachedSource !== undefined) {
  71. return cachedSource;
  72. }
  73. const result = r => {
  74. cache.set(source, r);
  75. return r;
  76. };
  77. if (m instanceof NormalModule) {
  78. const module = /** @type {NormalModule} */ (m);
  79. if (!matchModule(module.resource)) {
  80. return result(source);
  81. }
  82. } else if (m instanceof ConcatenatedModule) {
  83. const concatModule = /** @type {ConcatenatedModule} */ (m);
  84. if (concatModule.rootModule instanceof NormalModule) {
  85. const module = /** @type {NormalModule} */ (
  86. concatModule.rootModule
  87. );
  88. if (!matchModule(module.resource)) {
  89. return result(source);
  90. }
  91. } else {
  92. return result(source);
  93. }
  94. } else {
  95. return result(source);
  96. }
  97. /** @type {{ [key: string]: TODO; }} */
  98. let sourceMap;
  99. let content;
  100. if (source.sourceAndMap) {
  101. const sourceAndMap = source.sourceAndMap(options);
  102. sourceMap = sourceAndMap.map;
  103. content = sourceAndMap.source;
  104. } else {
  105. sourceMap = source.map(options);
  106. content = source.source();
  107. }
  108. if (!sourceMap) {
  109. return result(source);
  110. }
  111. // Clone (flat) the sourcemap to ensure that the mutations below do not persist.
  112. sourceMap = { ...sourceMap };
  113. const context = compiler.options.context;
  114. const root = compiler.root;
  115. const modules = sourceMap.sources.map(source => {
  116. if (!source.startsWith("webpack://")) return source;
  117. source = makePathsAbsolute(context, source.slice(10), root);
  118. const module = compilation.findModule(source);
  119. return module || source;
  120. });
  121. let moduleFilenames = modules.map(module => {
  122. return ModuleFilenameHelpers.createFilename(
  123. module,
  124. {
  125. moduleFilenameTemplate: this.moduleFilenameTemplate,
  126. namespace: this.namespace
  127. },
  128. {
  129. requestShortener: runtimeTemplate.requestShortener,
  130. chunkGraph,
  131. hashFunction: compilation.outputOptions.hashFunction
  132. }
  133. );
  134. });
  135. moduleFilenames = ModuleFilenameHelpers.replaceDuplicates(
  136. moduleFilenames,
  137. (filename, i, n) => {
  138. for (let j = 0; j < n; j++) filename += "*";
  139. return filename;
  140. }
  141. );
  142. sourceMap.sources = moduleFilenames;
  143. sourceMap.sourceRoot = options.sourceRoot || "";
  144. const moduleId = chunkGraph.getModuleId(m);
  145. sourceMap.file = `${moduleId}.js`;
  146. const footer =
  147. this.sourceMapComment.replace(
  148. /\[url\]/g,
  149. `data:application/json;charset=utf-8;base64,${Buffer.from(
  150. JSON.stringify(sourceMap),
  151. "utf8"
  152. ).toString("base64")}`
  153. ) + `\n//# sourceURL=webpack-internal:///${moduleId}\n`; // workaround for chrome bug
  154. return result(
  155. new RawSource(`eval(${JSON.stringify(content + footer)});`)
  156. );
  157. }
  158. );
  159. hooks.inlineInRuntimeBailout.tap(
  160. "EvalDevToolModulePlugin",
  161. () => "the eval-source-map devtool is used."
  162. );
  163. hooks.render.tap(
  164. "EvalSourceMapDevToolPlugin",
  165. source => new ConcatSource(devtoolWarning, source)
  166. );
  167. hooks.chunkHash.tap("EvalSourceMapDevToolPlugin", (chunk, hash) => {
  168. hash.update("EvalSourceMapDevToolPlugin");
  169. hash.update("2");
  170. });
  171. }
  172. );
  173. }
  174. }
  175. module.exports = EvalSourceMapDevToolPlugin;