-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.js
43 lines (39 loc) · 1.35 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
process.traceDeprecation = true;
const path = require("path");
const package_json = require("./package.json");
const package_json_mockup = require("@plone/mockup/package.json");
const package_json_patternslib = require("@patternslib/patternslib/package.json");
const webpack_config = require("@patternslib/dev/webpack/webpack.config").config;
const mf_config = require("@patternslib/dev/webpack/webpack.mf");
module.exports = () => {
let config = {
entry: {
"collectionfilter.min": path.resolve(__dirname, "resources/index"),
},
};
config = webpack_config({
config: config,
package_json: package_json,
});
config.output.path = path.resolve(
__dirname,
"src/collective/collectionfilter/static/"
);
config.plugins.push(
mf_config({
name: package_json.name,
filename: "collectionfilter-remote.min.js",
remote_entry: config.entry["collectionfilter.min"],
dependencies: {
...package_json_patternslib.dependencies,
...package_json_mockup.dependencies,
...package_json.dependencies,
},
})
);
if (process.env.NODE_ENV === "development") {
config.devServer.port = "8011";
config.devServer.static.directory = __dirname;
}
return config;
};