forked from CSSSR/csssr-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.conf.js
87 lines (85 loc) · 1.96 KB
/
webpack.conf.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
import path from 'path';
import stylish from 'eslint/lib/formatters/stylish';
import notifier from 'node-notifier';
import webpack from 'webpack';
import NpmInstallPlugin from 'npm-install-webpack-plugin';
const eslintFormatter = ({notify}) => errors => {
if (errors[0].messages) {
console.log(stylish(errors));
if (notify) {
const error = errors[0].messages.find(msg => msg.severity === 2);
if (error) {
notifier.notify({
title: error.message,
message: `${error.line}:${error.column} ${error.source.trim()}`,
icon: path.join(__dirname, 'tasks/images/error-icon.png')
});
}
}
}
};
export default function makeWebpackConfig({
watch = true,
sourcemaps = false,
debug = false,
notify = false,
eslint = true
}) {
return {
watch,
debug,
bail: false,
profile: true,
output: {
filename: 'app.min.js',
pathinfo: false
},
devtool: (sourcemaps || !debug) ? '#source-map' : 'eval',
resolve: {
modulesDirectories: [
'node_modules'
],
extensions: ['.js', '']
},
module: {
preLoaders: [{
test: /\.js$/,
loader: 'source-map-loader'
}],
loaders: [{
test: /\.js$/,
loader: 'babel',
exclude: /node_modules/
}, {
test: /\.json$/,
loader: 'json'
}, eslint && {
test: /\.js$/,
loader: 'eslint-loader',
exclude: /node_modules/
}, {
test: require.resolve('jquery'),
loader: 'expose?$!expose?jQuery'
}].filter(loader => loader)
},
plugins: [
new webpack.DefinePlugin({
'process.env': {
NODE_ENV: JSON.stringify(process.env.NODE_ENV)
}
})
].concat(debug ? [
new NpmInstallPlugin({saveDev: true}),
new webpack.HotModuleReplacementPlugin()
] : [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.UglifyJsPlugin({compress: {warnings: false}, output: {comments: false}})
]),
eslint: {
configFile: path.join(__dirname, '.eslintrc'),
emitErrors: false,
emitWarning: true,
formatter: eslintFormatter({notify})
}
};
}