-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathwebpack.production.config.js
78 lines (71 loc) · 1.65 KB
/
webpack.production.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
73
74
75
76
77
78
var webpack = require('webpack');
var Clean = require('clean-webpack-plugin');
var Html = require('html-webpack-plugin');
var autoprefixer = require('autoprefixer');
var TARGET = process.env.npm_lifecycle_event;
var config = {
entry: '',
path: '',
filename: '',
plugins: [],
externals: {}
};
if (TARGET === 'dist' || TARGET === 'dist-min') {
config.entry += './src/TicTacToe.js';
config.path += './dist';
config.filename += 'TicTacToe';
config.externals.react = 'react';
}
if (TARGET === 'dist') {
config.filename += '.js';
}
if (TARGET === 'dist-min') {
config.filename += '.min.js';
config.plugins = config.plugins.concat([
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
})
]);
}
if (TARGET === 'gh-pages') {
config.entry += './index.js';
config.path += './demo';
config.filename += 'bundle.js';
config.plugins = config.plugins.concat([
new webpack.optimize.UglifyJsPlugin({
compress: {
warnings: false
},
}),
new Clean(['demo']),
new Html({
template: './public/index.html',
inject: false,
filename: 'index.html'
})
]);
}
module.exports = {
entry: config.entry,
output: {
path: config.path,
filename: config.filename,
libraryTarget: 'umd',
library: 'TicTacToe'
},
externals: config.externals,
module: {
loaders: [
{ test: /\.js$/, exclude: /node_modules/, loader: 'babel' },
{ test: /\.scss$/, loader: 'style!css!postcss!sass' },
{ test: /\.css$/, loader: 'style!css!postcss' }
]
},
resolve: {
extensions: ['', '.js']
},
postcss: [autoprefixer],
plugins: config.plugins
};