Skip to content

Commit

Permalink
dependencies: bump gulp to v4
Browse files Browse the repository at this point in the history
To fix the same error as here nodejs/node#20285
Task changes as described at https://fettblog.eu/gulp-4-parallel-and-series/

Change-type: patch
Signed-off-by: Gergely Imreh <gergely@balena.io>
  • Loading branch information
Gergely Imreh committed May 2, 2019
1 parent aad677a commit e0ee1bb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ gulp.task 'test', ->
reporter: 'spec'
}))

gulp.task 'build', [
gulp.task 'build', gulp.series [
'coffee',
'pages'
]

gulp.task 'watch', [ 'build' ], ->
gulp.task 'watch', gulp.series [ 'build' ], ->
gulp.watch([ OPTIONS.files.coffee ], [ 'build' ])
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"ent": "^2.2.0",
"filehound": "^1.16.2",
"fs-extra": "^5.0.0",
"gulp": "^3.9.0",
"gulp": "^4.0.1",
"gulp-coffee": "^2.2.0",
"gulp-inline-source": "^2.1.0",
"gulp-mocha": "^2.0.0",
Expand Down

0 comments on commit e0ee1bb

Please sign in to comment.