Unverified Commit a66a0f02 authored by Andrew Sun͈̮'s avatar Andrew Sun͈̮ Committed by GitHub

lint?

parent f3926781
...@@ -125,7 +125,8 @@ module.exports = { ...@@ -125,7 +125,8 @@ module.exports = {
}, },
plugins: [ plugins: [
new VersionPlugin({length: 5}) new VersionPlugin({length: 5})
].concat(routes ]
.concat(routes
.filter(function (route) { .filter(function (route) {
return !route.redirect; return !route.redirect;
}) })
...@@ -136,7 +137,8 @@ module.exports = { ...@@ -136,7 +137,8 @@ module.exports = {
route: route route: route
}, templateConfig)); }, templateConfig));
}) })
).concat([ )
.concat([
new CopyWebpackPlugin([ new CopyWebpackPlugin([
{from: 'static'}, {from: 'static'},
{from: 'intl', to: 'js'} {from: 'intl', to: 'js'}
...@@ -151,7 +153,8 @@ module.exports = { ...@@ -151,7 +153,8 @@ module.exports = {
name: 'common', name: 'common',
filename: 'js/common.bundle.js' filename: 'js/common.bundle.js'
}) })
]).concat(process.env.NODE_ENV === 'production' ? [ ])
.concat(process.env.NODE_ENV === 'production' ? [
new webpack.optimize.UglifyJsPlugin({ new webpack.optimize.UglifyJsPlugin({
compress: { compress: {
warnings: false warnings: false
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment