forked from firefox-devtools/debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
101 lines (85 loc) · 3.47 KB
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
const toolbox = require("./node_modules/devtools-launchpad/index");
const getConfig = require("./bin/getConfig");
const { isDevelopment, isFirefoxPanel } = require("devtools-config");
const { NormalModuleReplacementPlugin } = require("webpack");
const path = require("path");
const projectPath = path.join(__dirname, "src");
var Visualizer = require("webpack-visualizer-plugin");
/*
* builds a path that's relative to the project path
* returns an array so that we can prepend
* hot-module-reloading in local development
*/
function getEntry(filename) {
return [path.join(projectPath, filename)];
}
const webpackConfig = {
entry: {
debugger: getEntry("main.js"),
"parser-worker": getEntry("workers/parser/worker.js"),
"pretty-print-worker": getEntry("workers/pretty-print/worker.js"),
"search-worker": getEntry("workers/search/worker.js")
},
output: {
path: path.join(__dirname, "assets/build"),
filename: "[name].js",
publicPath: "/assets/build"
}
};
function buildConfig(envConfig) {
const extra = {};
if (isDevelopment()) {
webpackConfig.plugins = [];
webpackConfig.module = webpackConfig.module || {};
webpackConfig.module.rules = webpackConfig.module.rules || [];
} else {
webpackConfig.plugins = [];
webpackConfig.output.libraryTarget = "umd";
if (process.env.vis) {
const viz = new Visualizer({
filename: "webpack-stats.html"
});
webpackConfig.plugins = [viz];
}
const mappings = [
[/\.\/mocha/, "./mochitest"],
[/\.\.\/utils\/mocha/, "../utils/mochitest"],
[/\.\/utils\/mocha/, "./utils/mochitest"],
[/\.\/percy-stub/, "./percy-webpack"]
];
extra.excludeMap = {
"./source-editor": "devtools/client/sourceeditor/editor",
"./test-flag": "devtools/shared/flags",
react: "devtools/client/shared/vendor/react",
redux: "devtools/client/shared/vendor/redux",
"react-dom": "devtools/client/shared/vendor/react-dom",
lodash: "devtools/client/shared/vendor/lodash",
immutable: "devtools/client/shared/vendor/immutable",
"react-redux": "devtools/client/shared/vendor/react-redux",
"wasmparser/dist/WasmParser": "devtools/client/shared/vendor/WasmParser",
"wasmparser/dist/WasmDis": "devtools/client/shared/vendor/WasmDis",
// The excluded files below should not be required while the Debugger runs
// in Firefox. Here, "devtools/shared/flags" is used as a dummy module.
"../assets/panel/debugger.properties": "devtools/shared/flags",
"devtools-connection": "devtools/shared/flags",
"chrome-remote-interface": "devtools/shared/flags",
"devtools-launchpad": "devtools/shared/flags"
};
mappings.forEach(([regex, res]) => {
webpackConfig.plugins.push(new NormalModuleReplacementPlugin(regex, res));
});
}
// TODO: It would be nice to stop bundling `devtools-source-map` entirely for
// the Firefox panel, but at the moment we still use `isOriginalId` from a
// required copy of the module, instead of using the one from the toolbox.
if (!isFirefoxPanel()) {
// When used as a Firefox panel, the toolbox supplies its own source map
// service and worker, so we only need to build this when running in a tab.
webpackConfig.entry["source-map-worker"] = getEntry(
"../node_modules/devtools-source-map/src/worker.js"
);
}
return toolbox.toolboxConfig(webpackConfig, envConfig, extra);
}
const envConfig = getConfig();
module.exports = buildConfig(envConfig);