File tree 4 files changed +21
-9
lines changed
4 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ var cli = new Liftoff({
29
29
var failed = false ;
30
30
process . once ( 'exit' , function ( code ) {
31
31
if ( code === 0 && failed ) {
32
- process . exit ( 1 ) ;
32
+ exit ( 1 ) ;
33
33
}
34
34
} ) ;
35
35
@@ -78,7 +78,7 @@ function handleArguments(env) {
78
78
if ( env . modulePackage && typeof env . modulePackage . version !== 'undefined' ) {
79
79
gutil . log ( 'Local version' , env . modulePackage . version ) ;
80
80
}
81
- process . exit ( 0 ) ;
81
+ exit ( 0 ) ;
82
82
}
83
83
84
84
if ( ! env . modulePath ) {
@@ -87,12 +87,12 @@ function handleArguments(env) {
87
87
chalk . magenta ( tildify ( env . cwd ) )
88
88
) ;
89
89
gutil . log ( chalk . red ( 'Try running: npm install gulp' ) ) ;
90
- process . exit ( 1 ) ;
90
+ exit ( 1 ) ;
91
91
}
92
92
93
93
if ( ! env . configPath ) {
94
94
gutil . log ( chalk . red ( 'No gulpfile found' ) ) ;
95
- process . exit ( 1 ) ;
95
+ exit ( 1 ) ;
96
96
}
97
97
98
98
// check for semver difference between cli and local installation
@@ -207,6 +207,17 @@ function logEvents(gulpInst) {
207
207
chalk . red ( 'Task \'' + err . task + '\' is not in your gulpfile' )
208
208
) ;
209
209
gutil . log ( 'Please check the documentation for proper gulpfile formatting' ) ;
210
- process . exit ( 1 ) ;
210
+ exit ( 1 ) ;
211
211
} ) ;
212
212
}
213
+
214
+ // fix stdout truncation on windows
215
+ function exit ( code ) {
216
+ if ( process . platform === 'win32' && process . stdout . bufferSize ) {
217
+ process . stdout . once ( 'drain' , function ( ) {
218
+ process . exit ( code ) ;
219
+ } ) ;
220
+ return ;
221
+ }
222
+ process . exit ( code ) ;
223
+ }
Original file line number Diff line number Diff line change @@ -6,12 +6,12 @@ var code = require('code');
6
6
var fs = require ( 'fs' ) ;
7
7
var child = require ( 'child_process' ) ;
8
8
9
- var output = fs . readFileSync ( __dirname + '/expected/flags-tasks-simple.txt' , 'utf8' ) ;
9
+ var output = fs . readFileSync ( __dirname + '/expected/flags-tasks-simple.txt' , 'utf8' ) . replace ( / \r \n / g , '\n' ) ;
10
10
11
11
lab . experiment ( 'flag: --tasks-simple' , function ( ) {
12
12
13
13
lab . test ( 'prints the task list' , function ( done ) {
14
- child . exec ( __dirname + '/../index.js --tasks-simple --cwd ./test' , function ( err , stdout ) {
14
+ child . exec ( 'node ' + __dirname + '/../index.js --tasks-simple --cwd ./test' , function ( err , stdout ) {
15
15
code . expect ( stdout ) . to . equal ( output ) ;
16
16
done ( err ) ;
17
17
} ) ;
Original file line number Diff line number Diff line change @@ -8,7 +8,8 @@ var child = require('child_process');
8
8
lab . experiment ( 'flag: --tasks' , function ( ) {
9
9
10
10
lab . test ( 'prints the task list' , function ( done ) {
11
- child . exec ( __dirname + '/../index.js --tasks --cwd ./test' , function ( err , stdout ) {
11
+ child . exec ( 'node ' + __dirname + '/../index.js --tasks --cwd ./test' , function ( err , stdout ) {
12
+ stdout = stdout . replace ( / \\ / g, '/' ) ;
12
13
code . expect ( stdout ) . to . contain ( '/gulp-cli/test' ) ;
13
14
code . expect ( stdout ) . to . contain ( '├── test1' ) ;
14
15
code . expect ( stdout ) . to . contain ( '├── test2' ) ;
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ var gulpVersion = require('gulp/package.json').version;
11
11
lab . experiment ( 'flag: --version' , function ( ) {
12
12
13
13
lab . test ( 'prints the task list' , function ( done ) {
14
- child . exec ( __dirname + '/../index.js --version --cwd ./test' , function ( err , stdout ) {
14
+ child . exec ( 'node ' + __dirname + '/../index.js --version --cwd ./test' , function ( err , stdout ) {
15
15
code . expect ( stdout ) . to . contain ( 'CLI version ' + cliVersion ) ;
16
16
code . expect ( stdout ) . to . contain ( 'Local version ' + gulpVersion ) ;
17
17
done ( err ) ;
You can’t perform that action at this time.
0 commit comments