Skip to content

Commit 919ae16

Browse files
committed
Remove NoErrorsPlugin
1 parent 2f8ecf2 commit 919ae16

File tree

4 files changed

+4
-6
lines changed

4 files changed

+4
-6
lines changed

examples/counter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
"babel-core": "^5.6.18",
2626
"babel-loader": "^5.1.4",
2727
"node-libs-browser": "^0.5.2",
28-
"react-hot-loader": "^1.2.7",
28+
"react-hot-loader": "^1.3.0",
2929
"webpack": "^1.9.11",
3030
"webpack-dev-server": "^1.9.0"
3131
}

examples/counter/webpack.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ module.exports = {
1414
publicPath: '/static/'
1515
},
1616
plugins: [
17-
new webpack.HotModuleReplacementPlugin(),
18-
new webpack.NoErrorsPlugin()
17+
new webpack.HotModuleReplacementPlugin()
1918
],
2019
resolve: {
2120
alias: {

examples/todomvc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
"babel-loader": "^5.1.4",
3939
"node-libs-browser": "^0.5.2",
4040
"raw-loader": "^0.5.1",
41-
"react-hot-loader": "^1.2.7",
41+
"react-hot-loader": "^1.3.0",
4242
"style-loader": "^0.12.3",
4343
"todomvc-app-css": "^2.0.1",
4444
"webpack": "^1.9.11",

examples/todomvc/webpack.config.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,7 @@ module.exports = {
1414
publicPath: '/static/'
1515
},
1616
plugins: [
17-
new webpack.HotModuleReplacementPlugin(),
18-
new webpack.NoErrorsPlugin()
17+
new webpack.HotModuleReplacementPlugin()
1918
],
2019
resolve: {
2120
alias: {

0 commit comments

Comments
 (0)