-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
73 lines (66 loc) · 1.74 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
const path = require("path");
const process = require("process");
const nodeExternals = require("webpack-node-externals");
const NodePolyfillPlugin = require("node-polyfill-webpack-plugin");
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const BundleAnalyzerPlugin =
require("webpack-bundle-analyzer").BundleAnalyzerPlugin;
const isProduction =
process.argv.filter((arg) => arg.match(/production/)).length > 0;
const suffix = isProduction ? ".min.js" : ".js";
const generalConfig = {
entry: {
"moment-javaformat": path.resolve("./src/index"),
},
output: {
path: path.resolve("./dist"),
libraryTarget: "umd",
libraryExport: "default",
},
externals: ["moment", "moment-timezone"],
resolve: {
modules: [path.resolve("./src"), path.resolve("./node_modules")],
extensions: [".ts", ".js"],
},
module: {
rules: [
{
test: /\.(js|ts)$/,
exclude: /node_modules/,
use: "babel-loader",
},
],
},
plugins: [],
};
if (isProduction) {
generalConfig.devtool = "cheap-module-source-map";
generalConfig.plugins.push(new NodePolyfillPlugin());
} else {
// generalConfig.plugins.push(new BundleAnalyzerPlugin());
}
const browserConfig = {
target: "web",
output: {
filename: `[name]${suffix}`,
path: path.resolve("./dist"),
libraryTarget: "umd",
libraryExport: "default",
globalObject: "this",
umdNamedDefine: true,
},
};
const nodeConfig = {
target: "node",
externals: [nodeExternals()],
output: {
filename: `node${suffix}`,
path: path.resolve("./dist"),
libraryTarget: "umd",
libraryExport: "default",
},
};
module.exports = [
Object.assign({}, generalConfig, browserConfig),
Object.assign({}, generalConfig, nodeConfig),
];