forked from Squarespace/base-template-npm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
42 lines (34 loc) · 1002 Bytes
/
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
require('dotenv').config({silent: true});
const webpack = require('webpack');
const path = require('path');
const pkg = require(__dirname + '/package.json');
const IS_PRODUCTION = process.env.NODE_ENV === 'production';
const siteJs = ['./scripts/site.js']
const config = {
devtool: IS_PRODUCTION ? false : 'source-map',
entry: {
'scripts/site-bundle': siteJs
},
output: {
path: path.resolve(__dirname, 'build'),
filename: '[name].js'
},
plugins: [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.OccurenceOrderPlugin(),
new webpack.DefinePlugin({
'__DEBUG__': JSON.stringify(!IS_PRODUCTION)
}),
new webpack.optimize.UglifyJsPlugin({
beautify: !IS_PRODUCTION,
compress: IS_PRODUCTION ? {
drop_console: true, // eslint-disable-line camelcase
warnings: false
} : false,
mangle: IS_PRODUCTION ? {
except: ['_'] // don't mangle lodash
} : false
})
]
}
module.exports = config;