File tree Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Expand file tree Collapse file tree 2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 9292 "gulp-istanbul-enforcer" : " ^1.0.3" ,
9393 "gulp-load-plugins" : " ^1.0.0-rc.1" ,
9494 "gulp-mocha" : " ^2.1.3" ,
95- "gulp-node-inspector" : " ^0.1.0" ,
9695 "gulp-plumber" : " ^1.0.1" ,
9796 "gulp-protractor" : " ^3.0.0" ,
9897 "gulp-rev" : " ^7.0.0" ,
Original file line number Diff line number Diff line change @@ -331,17 +331,11 @@ gulp.task('start:server:prod', () => {
331331 . on ( 'log' , onServerLog ) ;
332332} ) ;
333333
334- gulp . task ( 'start:inspector' , ( ) => {
335- gulp . src ( [ ] )
336- . pipe ( plugins . nodeInspector ( {
337- debugPort : < %= debugPort % >
338- } ) ) ;
339- } ) ;
340-
341334gulp . task ( 'start:server:debug' , ( ) => {
342335 process . env . NODE_ENV = process . env . NODE_ENV || 'development' ;
343336 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 } ` )
345339 . on ( 'log' , onServerLog ) ;
346340} ) ;
347341
@@ -385,7 +379,6 @@ gulp.task('serve:debug', cb => {
385379 'typings' < % } % >
386380 ] ,
387381 'webpack:dev' ,
388- 'start:inspector' ,
389382 [ 'start:server:debug' , 'start:client' ] ,
390383 'watch' ,
391384 cb
You can’t perform that action at this time.
0 commit comments