File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed
Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,11 @@ npm install --save-dev webpack-dev-server
5656 let keepalive = false ;
5757
5858 targets . forEach ( ( target ) => {
59- if ( target === 'options' ) return ;
59+ if ( target === 'options' ) {
60+ runningTargetCount -- ;
61+ return ;
62+ }
63+
6064 const optionHelper = new OptionHelper ( grunt , this . name , target ) ;
6165 const opts = optionHelper . getOptions ( ) ;
6266 const webpackOptions = optionHelper . getWebpackOptions ( ) ;
Original file line number Diff line number Diff line change @@ -17,7 +17,10 @@ module.exports = (grunt) => {
1717 let keepalive = false ;
1818
1919 targets . forEach ( ( target ) => {
20- if ( target === 'options' ) return ;
20+ if ( target === 'options' ) {
21+ runningTargetCount -- ;
22+ return ;
23+ }
2124
2225 const optionHelper = new OptionHelper ( grunt , this . name , target ) ;
2326
You can’t perform that action at this time.
0 commit comments