-
-
Notifications
You must be signed in to change notification settings - Fork 60
/
webpack.config.js
72 lines (67 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
63
64
65
66
67
68
69
70
71
72
import path from 'node:path';
import { fileURLToPath } from 'node:url';
import webpack from 'webpack';
import { readFile } from 'node:fs/promises';
/* eslint-disable no-underscore-dangle */
const __filename = fileURLToPath(import.meta.url);
const __dirname = path.dirname(__filename);
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 = {
mode: 'none',
entry: path.join(__dirname, 'src/index.js'),
resolve: {
extensions: ['.js', '.jsx'],
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /(node_modules)/,
loader: 'babel-loader',
},
],
},
externals: {
react: 'react',
},
plugins: [
new webpack.BannerPlugin(banner.trim()),
],
};
const umdConfig = {
...commonConfig,
output: {
path: path.join(__dirname, '/lib'),
filename: 'index.js',
library: {
name: 'ReactDualListbox',
type: 'umd',
umdNamedDefine: true,
},
globalObject: 'this',
},
};
const esmConfig = {
...commonConfig,
target: 'es2020',
output: {
path: path.join(__dirname, '/lib'),
filename: 'index.esm.js',
library: {
type: 'module',
},
},
experiments: {
outputModule: true,
},
};
function makeConfig({ target }) {
return target === 'esm' ? esmConfig : umdConfig;
}
export default makeConfig;