-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathwebpack.prod.config.js
executable file
·50 lines (46 loc) · 1.12 KB
/
webpack.prod.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
var path = require('path');
var webpack = require('webpack');
var BASE_DIR = process.cwd();
var COMPONENT_FILE = 'react-nested-json-table';
var COMPONENT_NAME = 'ReactNestedJsonTable';
var plugins = [];
function getPackageMain() {
return require(path.resolve(BASE_DIR, 'package.json')).main;
}
if (process.env.MINIFY) {
plugins.push(
new webpack.optimize.UglifyJsPlugin()
);
COMPONENT_FILE += '.min';
}
var config = {
devtool: 'sourcemap',
entry: path.resolve(BASE_DIR, getPackageMain()),
output: {
path: path.join(__dirname, 'dist'),
publicPath: 'dist/',
filename: COMPONENT_FILE + '.js',
sourceMapFilename: COMPONENT_FILE + '.map',
library: COMPONENT_NAME,
libraryTarget: 'umd',
},
module: {
loaders: [
{ test: /\.(js|jsx)/, exclude: /node_modules/, loader: 'babel'},
{ test: /\.css$/, loader: 'style-loader!css-loader'}
],
},
plugins: plugins,
resolve: {
extensions: ['', '.js', '.jsx', '.css'],
},
externals: {
'react': {
root: 'React',
commonjs2: 'react',
commonjs: 'react',
amd: 'react',
},
},
};
module.exports = config;