-
Notifications
You must be signed in to change notification settings - Fork 91
Expand file tree
/
Copy pathwebpack.config.js
More file actions
87 lines (82 loc) · 2.02 KB
/
webpack.config.js
File metadata and controls
87 lines (82 loc) · 2.02 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
import path from 'node:path';
import webpack from 'webpack';
import { readFile } from 'node:fs/promises';
const { dirname } = import.meta;
const json = await readFile(new URL('./package.json', import.meta.url));
const pkg = JSON.parse(json.toString());
const banner = `
${pkg.name} - v${pkg.version}
Copyright (c) ${pkg.author}
Licensed under the ${pkg.license} License.
`;
const commonConfig = {
target: 'web',
entry: path.join(dirname, 'src/index.js'),
resolve: {
extensions: ['.js'],
},
module: {
rules: [
{
test: /\.js?$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
},
],
},
externals: {
// Do not compile d3 with the output
// In the browser, this allows window.d3 to be used
// In Node, this will use the included d3 package
d3: 'd3',
},
plugins: [
new webpack.BannerPlugin(banner.trim()),
],
};
const configMap = {
esm: {
...commonConfig,
mode: 'none',
output: {
path: path.join(dirname, '/dist'),
filename: 'index.esm.js',
library: {
type: 'module',
},
},
experiments: {
outputModule: true,
},
},
umd: {
...commonConfig,
mode: 'none',
output: {
path: path.join(dirname, '/dist'),
filename: 'index.cjs.js',
library: {
name: 'D3Funnel',
type: 'umd',
umdNamedDefine: true,
},
},
},
browser: {
...commonConfig,
mode: 'production',
output: {
path: path.join(dirname, '/dist'),
filename: 'd3-funnel.min.js',
library: {
name: 'D3Funnel',
type: 'umd',
umdNamedDefine: true,
},
},
},
};
function makeConfig({ target }) {
return configMap[target];
}
export default makeConfig;