-
Notifications
You must be signed in to change notification settings - Fork 2
/
webpack.config.js
37 lines (32 loc) · 1.05 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
process.traceDeprecation = true;
const mf_config = require("@patternslib/dev/webpack/webpack.mf");
const package_json = require("./package.json");
const package_json_patternslib = require("@patternslib/patternslib/package.json");
const path = require("path");
const webpack_config = require("@patternslib/dev/webpack/webpack.config").config;
module.exports = () => {
let config = {
entry: {
"bundle.min": path.resolve(__dirname, "index.js"),
},
};
config = webpack_config({
config: config,
package_json: package_json,
});
config.output.path = path.resolve(__dirname, "dist/");
config.plugins.push(
mf_config({
name: package_json.name,
remote_entry: config.entry["bundle.min"],
dependencies: {
...package_json_patternslib.dependencies,
...package_json.dependencies,
},
})
);
if (process.env.NODE_ENV === "development") {
config.devServer.static.directory = __dirname;
}
return config;
};