-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwebpack.config.js
85 lines (80 loc) · 2.22 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
"use strict";
const webpack = require('webpack');
const merge = require('webpack-merge');
const parts = require('./libs/parts');
const common = {
context: __dirname,
entry: {
app: './app/js/'
},
output: {
path: __dirname + '/build',
filename: '[name].js'
},
module: {
unknownContextCritical: false,
loaders: [
{
test: /\.js$/,
exclude: /node_modules/,
loader: 'babel-loader',
query: {
cacheDirectory: true,
presets: ['es2015']
}
},
{
test: /\.css$/,
loaders: ['style-loader', 'css-loader']
},
{
test: /\.scss$/,
loaders: ['style-loader', 'css-loader', 'sass-loader']
},
{
test: /\.(png|gif|jpg|jpeg)$/,
loader: 'file-loader'
}, {
test: require.resolve('./node_modules/material-design-lite/material'),
loader: 'exports-loader?componentHandler'
}
]
}
};
let config;
// Detect how npm is run and branch based on that
switch(process.env.npm_lifecycle_event) {
case 'build':
config = merge(common, {
plugins: [
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.optimize.UglifyJsPlugin({
debug: true,
minimize: true,
sourceMap: false,
output: {
comments: false
},
compressor: {
warnings: false
}
})
]
});
break;
default:
config = merge(
common,
parts.devServer({
// Customize host/port here if needed
host: process.env.HOST,
//port: process.env.PORT
port: 8081,
inline: true,
colors: true,
progress: true,
devtool: 'source-map'
})
);
}
module.exports = config;