-
Notifications
You must be signed in to change notification settings - Fork 1
/
webpack.config.js
92 lines (79 loc) · 2.26 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
91
92
var ChunkManifestPlugin = require('chunk-manifest-webpack-plugin'),
path = require('path'),
webpack = require('webpack')
require('dotenv').config({path: path.join(__dirname, '.env')})
var config = {
entry: {
vendor: [
'jquery',
'bootstrap'
],
app: './app/index.js'
},
output: {
filename: '[name].js',
path: path.join(__dirname, './public/js')
},
module: {
loaders: [
{
test: /\.js$/,
loader: 'babel',
exclude: [/bower_components/],
query: {
presets : ['es2015', 'stage-0'],
//plugins : ["transform-runtime","transform-class-properties"]
}
},
{ test: /\.json$/, loader: 'json-loader' },
// jQuery
{ test: /jquery\.js$/, loader: 'expose?$' },
{ test: /jquery\.js$/, loader: 'expose?jQuery' },
// Bootstrap
{ test: /\.woff(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&minetype=application/font-woff" },
{ test: /\.ttf(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&minetype=application/octet-stream" },
{ test: /\.eot(\?v=\d+\.\d+\.\d+)?$/, loader: "file" },
{ test: /\.svg(\?v=\d+\.\d+\.\d+)?$/, loader: "url?limit=10000&minetype=image/svg+xml" }
]
},
node: {
fs: 'empty'
},
resolve: {
root: __dirname,
extensions: ['', '.hbs', '.js', '.json'],
modulesDirectories: ['bower_components', 'node_modules'],
alias: {
'jquery': path.join(__dirname, './bower_components/jquery/dist/jquery.min.js'),
'bootstrap': path.join(__dirname, './bower_components/bootstrap/dist/js/bootstrap.min.js'),
}
},
resolveLoader: {
root: path.join(__dirname, 'node_modules')
},
plugins: [
new webpack.optimize.DedupePlugin(),
new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js'),
/*new ChunkManifestPlugin({
filename: "manifest.json",
manifestVariable: "webpackManifest"
})*/
new webpack.ProvidePlugin({
$: 'jquery',
jQuery: 'jquery'
})
]
}
if(process.env.NODE_ENV == 'production') {
config.plugins.push(new webpack.optimize.UglifyJsPlugin(
{
compress : {
warnings : false
},
output : {
comments : false,
semicolons : true
}
}))
}
module.exports = config