-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
90 lines (86 loc) · 1.95 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
const path = require('path');
const webpack = require('webpack');
const { compact } = require('lodash');
const dev = process.env.NODE_ENV !== 'production';
const entry = path.join(__dirname, 'src', 'index.js');
const style = path.join(__dirname, 'styles', 'index.scss');
module.exports = {
devtool: dev ? 'cheap-source-map' : 'source-map',
entry: {
app: compact([
dev ? 'webpack-dev-server/client?http://localhost:8080/' : null,
entry,
style,
]),
lib: [
'babel-polyfill',
'classnames',
'immutable',
'matter-js',
'pixi.js',
'react',
'react-dom',
'react-immutable-proptypes',
'react-pixi',
'react-redux',
'redux',
'redux-thunk',
],
},
output: {
path: path.resolve(__dirname, 'dist'),
publicPath: 'dist',
filename: '[name].js',
},
plugins: compact([
new webpack.NoErrorsPlugin(),
new webpack.optimize.CommonsChunkPlugin('lib', 'lib.js'),
dev ? null : new webpack.optimize.OccurenceOrderPlugin(),
dev ? null : new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify('production'),
},
}),
dev ? null : new webpack.optimize.UglifyJsPlugin({
compressor: {
warnings: false,
},
}),
]),
module: {
loaders: [
{
test: /\.js$/,
loaders: ['babel'],
include: path.join(__dirname, 'src'),
},
{
test: style,
loaders: compact([
'file?name=style.css',
'extract',
'css',
'sass',
]),
},
{
test: /\.scss/,
loaders: ['css', 'sass'],
include: path.join(__dirname, 'styles'),
exclude: [style],
},
{
test: /\.js$/,
loaders: ['transform/cacheable?brfs'],
include: /node_modules\/pixi/,
},
{
test: /\.json$/,
loaders: ['json'],
},
],
},
devServer: {
inline: true,
},
};