This repository was archived by the owner on May 27, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathwebpack.config.js
More file actions
69 lines (63 loc) · 1.86 KB
/
webpack.config.js
File metadata and controls
69 lines (63 loc) · 1.86 KB
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
const path = require("path");
const TerserPlugin = require("terser-webpack-plugin");
const dfxJson = require("./dfx.json");
// List of all aliases for canisters. This creates the module alias for
// the `import ... from "ic:canisters/xyz"` where xyz is the name of a
// canister.
const aliases = Object.entries(dfxJson.canisters).reduce((acc, [name,]) => {
const outputRoot = path.join(__dirname, dfxJson.defaults.build.output, name);
return {
...acc,
["ic:canisters/" + name]: path.join(outputRoot, "main.js"),
["ic:idl/" + name]: path.join(outputRoot, "main.did.js"),
};
}, {
// This will later point to the userlib from npm, when we publish the userlib.
"ic:userlib": path.join(
process.env["HOME"],
".cache/dfinity/versions",
dfxJson.dfx || process.env["DFX_VERSION"],
"js-user-library/dist/lib.prod.js",
),
});
/**
* Generate a webpack configuration for a canister.
*/
function generateWebpackConfigForCanister(name, info) {
if (typeof info.frontend !== 'object') {
return;
}
const outputRoot = path.join(__dirname, dfxJson.defaults.build.output, name);
const inputRoot = __dirname;
const entry = path.join(inputRoot, info.frontend.entrypoint);
return {
mode: "production",
entry,
devtool: "source-map",
optimization: {
minimize: true,
minimizer: [new TerserPlugin()],
},
resolve: {
alias: aliases,
},
module: {
rules: [
{ test: /\.(js|ts)x?$/, loader: "ts-loader" }
]
},
output: {
filename: "index.js",
path: path.join(outputRoot, "assets"),
},
plugins: [
],
};
}
// If you have webpack configurations you want to build as part of this
// config, add them here.
module.exports = [
...Object.entries(dfxJson.canisters).map(([name, info]) => {
return generateWebpackConfigForCanister(name, info);
}).filter(x => !!x),
];