-
Notifications
You must be signed in to change notification settings - Fork 96
/
webpack.config.js
62 lines (58 loc) · 1.64 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
import path from 'node:path';
import { readFile } from 'node:fs/promises';
import { fileURLToPath } from 'node:url';
import webpack from 'webpack';
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 fileMap = {
node: 'd3-funnel.js',
web: 'd3-funnel.min.js',
};
/* eslint-disable no-underscore-dangle */
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
function makeConfig({ target }) {
return {
mode: 'none',
target,
entry: path.join(__dirname, 'src/index.js'),
output: {
path: path.join(__dirname, '/dist'),
filename: fileMap[target],
library: {
name: 'D3Funnel',
type: 'umd',
umdNamedDefine: true,
},
},
resolve: {
extensions: ['.js'],
},
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',
},
],
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
},
],
},
plugins: [
new webpack.BannerPlugin(banner.trim()),
],
};
}
export default makeConfig;