File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,10 @@ See [**the documentation**](http://webpack.github.io/docs/webpack-dev-server.htm
32
32
33
33
We appreciate all help! Check out [ CONTRIBUTING.md] ( CONTRIBUTING.md ) for more information on how to help.
34
34
35
+ ## Maintainer
36
+
37
+ This project is maintained by [ ** Kees Kluskens** ] ( https://github.com/spacek33z/ ) .
38
+
35
39
## Inspiration
36
40
37
41
This project is heavily inspired by [ peerigon/nof5] ( https://github.com/peerigon/nof5 ) .
Original file line number Diff line number Diff line change @@ -68,18 +68,14 @@ var onSocketMsg = {
68
68
self . location . reload ( ) ;
69
69
} ,
70
70
warnings : function ( warnings ) {
71
- log ( "info" , "[WDS] Warnings while compiling." ) ;
71
+ log ( "info" , "[WDS] Warnings while compiling. Reload prevented. " ) ;
72
72
for ( var i = 0 ; i < warnings . length ; i ++ )
73
73
console . warn ( stripAnsi ( warnings [ i ] ) ) ;
74
- if ( initial ) return initial = false ;
75
- reloadApp ( ) ;
76
74
} ,
77
75
errors : function ( errors ) {
78
- log ( "info" , "[WDS] Errors while compiling." ) ;
76
+ log ( "info" , "[WDS] Errors while compiling. Reload prevented. " ) ;
79
77
for ( var i = 0 ; i < errors . length ; i ++ )
80
78
console . error ( stripAnsi ( errors [ i ] ) ) ;
81
- if ( initial ) return initial = false ;
82
- reloadApp ( ) ;
83
79
} ,
84
80
close : function ( ) {
85
81
log ( "error" , "[WDS] Disconnected!" ) ;
You can’t perform that action at this time.
0 commit comments