Skip to content

Commit 2458d45

Browse files
Upgrade packages (#26)
1 parent b8d2478 commit 2458d45

File tree

3 files changed

+19
-16
lines changed

3 files changed

+19
-16
lines changed

client/config/webpack.config.common.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
const path = require('path');
22
const HtmlWebpackPlugin = require('html-webpack-plugin');
33
const glob = require('glob');
4+
const webpack = require('webpack');
45

56
const TARGET = process.env.npm_lifecycle_event;
67
const PATHS = {
@@ -58,7 +59,8 @@ const common = {
5859
useShortDoctype: true,
5960
html5: true
6061
}
61-
})
62+
}),
63+
new webpack.optimize.ModuleConcatenationPlugin()
6264
]
6365
};
6466

client/config/webpack.config.dev.js

+1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module.exports = merge(common, {
2323
loader: 'css-loader',
2424
options: {
2525
modules: true,
26+
camelCase: 'dashes',
2627
localIdentName: '[path][name]__[local]'
2728
}
2829
},

package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -46,34 +46,34 @@
4646
]
4747
},
4848
"devDependencies": {
49-
"babel-core": "^6.24.1",
49+
"babel-core": "^6.25.0",
5050
"babel-eslint": "^7.2.3",
51-
"babel-loader": "^7.0.0",
51+
"babel-loader": "^7.1.0",
5252
"babel-preset-es2015": "^6.24.1",
5353
"babel-preset-react": "^6.24.1",
5454
"babel-preset-survivejs-kanban": "^0.3.3",
5555
"clean-webpack-plugin": "^0.1.16",
56-
"css-loader": "^0.28.1",
57-
"eslint": "^3.19.0",
58-
"eslint-loader": "^1.7.1",
59-
"eslint-plugin-react": "^7.0.0",
60-
"extract-text-webpack-plugin": "^2.1.0",
61-
"file-loader": "^0.11.1",
56+
"css-loader": "^0.28.4",
57+
"eslint": "^4.0.0",
58+
"eslint-loader": "^1.8.0",
59+
"eslint-plugin-react": "^7.1.0",
60+
"extract-text-webpack-plugin": "^2.1.2",
61+
"file-loader": "^0.11.2",
6262
"html-webpack-plugin": "^2.28.0",
6363
"html-webpack-template": "^6.0.1",
6464
"http-server": "^0.10.0",
65-
"husky": "^0.13.3",
65+
"husky": "^0.13.4",
6666
"istanbul-instrumenter-loader": "^2.0.0",
6767
"json-loader": "^0.5.4",
68-
"lint-staged": "^3.4.1",
69-
"node-sass": "^4.5.2",
68+
"lint-staged": "^4.0.0",
69+
"node-sass": "^4.5.3",
7070
"nodemon": "^1.11.0",
7171
"npm-install-webpack-plugin": "^4.0.4",
7272
"raw-loader": "^0.5.1",
73-
"resolve-url-loader": "^2.0.2",
74-
"sass-loader": "^6.0.4",
75-
"style-loader": "^0.17.0",
76-
"webpack": "^2.5.1",
73+
"resolve-url-loader": "^2.0.3",
74+
"sass-loader": "^6.0.6",
75+
"style-loader": "^0.18.2",
76+
"webpack": "^3.0.0",
7777
"webpack-dev-middleware": "^1.10.2",
7878
"webpack-hot-middleware": "^2.18.0",
7979
"webpack-merge": "^4.1.0"

0 commit comments

Comments
 (0)