Skip to content

Commit 3af9424

Browse files
committed
Update dependencies
1 parent 5773580 commit 3af9424

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
"browser-sync": "^2.18.6",
3333
"chai": "^3.5.0",
3434
"enzyme": "^2.7.1",
35-
"eslint": "^3.13.0",
36-
"eslint-config-airbnb": "^14.0.0",
35+
"eslint": "^3.15.0",
36+
"eslint-config-airbnb": "^14.1.0",
3737
"eslint-plugin-import": "^2.2.0",
38-
"eslint-plugin-jsx-a11y": "^3.0.2",
38+
"eslint-plugin-jsx-a11y": "^4.0.0",
3939
"eslint-plugin-react": "^6.9.0",
4040
"gulp": "^3.9.1",
4141
"gulp-autoprefixer": "^3.1.1",
@@ -49,7 +49,7 @@
4949
"react": "^15.4.2",
5050
"react-addons-test-utils": "^15.4.2",
5151
"react-dom": "^15.4.2",
52-
"webpack": "^1.13.1",
52+
"webpack": "^2.2.1",
5353
"webpack-stream": "^3.2.0"
5454
}
5555
}

webpack.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@ module.exports = {
2323
},
2424
],
2525
module: {
26-
loaders: [
26+
rules: [
2727
{
2828
test: /\.js?$/,
2929
exclude: /(node_modules|bower_components|vender_modules)/,
30-
loader: 'babel',
30+
loader: 'babel-loader',
3131
},
3232
],
3333
},

webpack.test.config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ module.exports = {
55
library: 'ReactCheckboxTree',
66
},
77
module: {
8-
loaders: [
8+
rules: [
99
{
1010
test: /\.js?$/,
1111
exclude: /(node_modules|bower_components|vender_modules)/,
12-
loader: 'babel',
12+
loader: 'babel-loader',
1313
},
1414
],
1515
},

0 commit comments

Comments
 (0)