-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.pub.js
More file actions
41 lines (41 loc) · 901 Bytes
/
webpack.pub.js
File metadata and controls
41 lines (41 loc) · 901 Bytes
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
const path = require('path');
const webpack = require('webpack');
module.exports = {
devtool: 'source-map',
output: {
path: path.join(__dirname, 'dist'),
filename: 'index.js',
library: 'ReactAsTabs',
libraryTarget: 'umd'
},
externals: {
react: 'React'
},
plugins: [
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DefinePlugin({
'process.env': {
'NODE_ENV': JSON.stringify('production')
}
}),
new webpack.optimize.UglifyJsPlugin({
compressor: {
warnings: false
}
})
],
postcss: [require('autoprefixer')],
module: {
loaders: [{
test: /\.jsx?/,
loaders: ['babel'],
include: [path.join(__dirname, 'src')]
}, {
test: /\.less/,
loaders: ['style', 'css', 'postcss', 'less']
}, {
test: /\.css$/,
loaders: ['style', 'css', 'postcss']
}]
}
};