File tree Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Expand file tree Collapse file tree 2 files changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -83,6 +83,7 @@ program
83
83
. option ( '--globals <names>' , 'allow the given comma-delimited global [names]' , list , [ ] )
84
84
. option ( '--es_staging' , 'enable all staged features' )
85
85
. option ( '--harmony<_classes,_generators,...>' , 'all node --harmony* flags are available' )
86
+ . option ( '--icu-data-dir' , 'include ICU data' )
86
87
. option ( '--inline-diffs' , 'display actual/expected differences inline within each string' )
87
88
. option ( '--interfaces' , 'display available interfaces' )
88
89
. option ( '--no-deprecation' , 'silence deprecation warnings' )
Original file line number Diff line number Diff line change @@ -48,6 +48,7 @@ process.argv.slice(2).forEach(function(arg){
48
48
default :
49
49
if ( 0 == arg . indexOf ( '--harmony' ) ) args . unshift ( arg ) ;
50
50
else if ( 0 == arg . indexOf ( '--trace' ) ) args . unshift ( arg ) ;
51
+ else if ( 0 == arg . indexOf ( '--icu-data-dir' ) ) args . unshift ( arg ) ;
51
52
else if ( 0 == arg . indexOf ( '--max-old-space-size' ) ) args . unshift ( arg ) ;
52
53
else args . push ( arg ) ;
53
54
break ;
You can’t perform that action at this time.
0 commit comments