File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 92
92
"gulp-istanbul-enforcer" : " ^1.0.3" ,
93
93
"gulp-load-plugins" : " ^1.0.0-rc.1" ,
94
94
"gulp-mocha" : " ^2.1.3" ,
95
- "gulp-node-inspector" : " ^0.1.0" ,
96
95
"gulp-plumber" : " ^1.0.1" ,
97
96
"gulp-protractor" : " ^3.0.0" ,
98
97
"gulp-rev" : " ^7.0.0" ,
Original file line number Diff line number Diff line change @@ -331,17 +331,11 @@ gulp.task('start:server:prod', () => {
331
331
. on ( 'log' , onServerLog ) ;
332
332
} ) ;
333
333
334
- gulp . task ( 'start:inspector' , ( ) => {
335
- gulp . src ( [ ] )
336
- . pipe ( plugins . nodeInspector ( {
337
- debugPort : < %= debugPort % >
338
- } ) ) ;
339
- } ) ;
340
-
341
334
gulp . task ( 'start:server:debug' , ( ) => {
342
335
process . env . NODE_ENV = process . env . NODE_ENV || 'development' ;
343
336
config = require ( `./${ serverPath } /config/environment` ) ;
344
- nodemon ( `-w ${ serverPath } --debug=<%= debugPort %> --debug-brk ${ serverPath } ` )
337
+ // nodemon(`-w ${serverPath} --debug=<%= debugPort %> --debug-brk ${serverPath}`)
338
+ nodemon ( `-w ${ serverPath } --inspect --debug-brk ${ serverPath } ` )
345
339
. on ( 'log' , onServerLog ) ;
346
340
} ) ;
347
341
@@ -385,7 +379,6 @@ gulp.task('serve:debug', cb => {
385
379
'typings' < % } % >
386
380
] ,
387
381
'webpack:dev' ,
388
- 'start:inspector' ,
389
382
[ 'start:server:debug' , 'start:client' ] ,
390
383
'watch' ,
391
384
cb
You can’t perform that action at this time.
0 commit comments