forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
62 lines (59 loc) · 1.45 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
const path = require('path');
const dir_js = path.resolve(__dirname, 'react_components');
const dir_build = path.resolve(__dirname, 'build');
const dir_dist = path.resolve(__dirname, 'dist');
const dir_node_modules = path.resolve(__dirname, 'node_modules');
const config = {
entry: path.resolve(dir_js, 'index.js'),
output: {
path: dir_build,
library: 'ReactPaginate',
filename: 'react-paginate.js',
libraryTarget: 'umd',
// this to support both browser and Node.
// https://github.com/riversun/making-library-with-webpack#1-4publish-an-export-default-class-with-the-setting-library-name--class-name
globalObject: 'this',
},
devServer: {
contentBase: dir_build,
},
module: {
rules: [
{
use: 'react-hot-loader/webpack',
test: dir_js,
exclude: dir_node_modules,
},
{
use: 'babel-loader',
test: dir_js,
exclude: dir_node_modules,
},
],
},
externals: [
{
react: {
root: 'React',
amd: 'react',
commonjs: 'react',
commonjs2: 'react',
},
},
],
stats: {
colors: true,
},
devtool: 'source-map',
mode: 'development',
};
module.exports = (env, argv) => {
if (argv.mode === 'production') {
config.mode = 'production';
config.output.path = dir_dist;
config.module.rules = config.module.rules.filter(
(rule) => rule.use !== 'react-hot-loader/webpack'
);
}
return config;
};