forked from AdeleD/react-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
44 lines (43 loc) · 983 Bytes
/
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
/* global __dirname */
var path = require('path');
var dir_js = path.resolve(__dirname, 'react_components');
var dir_build = path.resolve(__dirname, 'build');
module.exports = {
entry: path.resolve(dir_js, 'index.js'),
output: {
path: dir_build,
library: 'ReactPaginate',
libraryTarget: 'umd',
filename: 'react-paginate.js'
},
devServer: {
contentBase: dir_build,
},
module: {
rules: [
{
use: 'react-hot-loader/webpack',
test: dir_js,
},
{
use: 'babel-loader',
test: dir_js
}
]
},
externals: [
{
react: {
root: 'React',
amd: 'react',
commonjs: 'react',
commonjs2: 'react'
}
}
],
stats: {
colors: true
},
devtool: 'source-map',
mode: 'development'
};