Update to webpack 2

This commit is contained in:
Pavel Djundik 2017-02-17 17:01:20 +02:00
parent 00a3e3f14c
commit e0111ed587
2 changed files with 22 additions and 20 deletions

View file

@ -75,6 +75,6 @@
"socket.io-client": "1.7.2",
"stylelint": "7.8.0",
"urijs": "1.18.7",
"webpack": "1.14.0"
"webpack": "2.2.1"
}
}

View file

@ -26,17 +26,19 @@ let config = {
publicPath: "/"
},
module: {
loaders: [
rules: [
{
test: /\.js$/,
include: [
path.resolve(__dirname, "client"),
],
loader: "babel",
query: {
presets: [
"es2015"
]
use: {
loader: "babel-loader",
options: {
presets: [
"es2015"
]
}
}
},
{
@ -44,14 +46,16 @@ let config = {
include: [
path.resolve(__dirname, "client/views"),
],
loader: "handlebars-loader",
query: {
helperDirs: [
path.resolve(__dirname, "client/js/libs/handlebars")
],
extensions: [
".tpl"
],
use: {
loader: "handlebars-loader",
options: {
helperDirs: [
path.resolve(__dirname, "client/js/libs/handlebars")
],
extensions: [
".tpl"
],
}
}
},
]
@ -66,13 +70,11 @@ let config = {
// *********************************
if (process.env.NODE_ENV === "production") {
config.plugins.push(new webpack.optimize.DedupePlugin());
config.plugins.push(new webpack.optimize.UglifyJsPlugin({
comments: false,
compress: {
warnings: false
}
comments: false
}));
} else {
console.log("Building in development mode, bundles will not be minified.");
}
module.exports = config;