Skip to content

Commit

Permalink
Merge pull request #136 from hfahlbusch/update-npm-package-gulp4
Browse files Browse the repository at this point in the history
Update npm package gulp4
  • Loading branch information
jagadeeshaby authored Sep 13, 2019
2 parents 433d465 + 1a2466b commit dd523a9
Show file tree
Hide file tree
Showing 3 changed files with 4,877 additions and 6 deletions.
4 changes: 2 additions & 2 deletions gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ gulp.task('pre-test', function () {
.pipe(istanbul.hookRequire());
});

gulp.task('test', ['pre-test'], function () {
gulp.task('test', gulp.series(['pre-test']), function () {
return gulp.src(['test/unit/*.js'])
.pipe(mocha({exit: true, showStack:true}))
.on('error', console.error)
Expand All @@ -45,4 +45,4 @@ gulp.task('script', function() {
.pipe(gulp.dest('./release/'))
});

gulp.task('default',['test','script']);
gulp.task('default', gulp.series(['test','script']));
Loading

0 comments on commit dd523a9

Please sign in to comment.