mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-22 23:27:54 -05:00
Fix linting
Something is off with our indentation rules. Possibly a bug in the version of eslint we're using?
This commit is contained in:
parent
a66a0f02e5
commit
aee9f0c608
1 changed files with 9 additions and 11 deletions
|
@ -125,8 +125,7 @@ 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;
|
||||||
})
|
})
|
||||||
|
@ -137,8 +136,7 @@ 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'}
|
||||||
|
@ -154,11 +152,11 @@ module.exports = {
|
||||||
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
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
] : [])
|
] : [])
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue