Skip to content

Commit

Permalink
Fix CLI gulp script. (#163)
Browse files Browse the repository at this point in the history
  • Loading branch information
aomarks authored Apr 17, 2018
1 parent 67f781d commit f24c0ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ gulp.task('compile', () => {

gulp.task('copy', () => gulp.src(['src/**/.gitignore']).pipe(gulp.dest('lib')));

gulp.task('test', ['build', 'test:unit']);
gulp.task('test', (done) => runSeq('build', 'test:unit', done));

gulp.task(
'test:integration',
Expand Down

0 comments on commit f24c0ad

Please sign in to comment.