dependencies: bump gulp to v4

To fix the same error as here https://github.com/nodejs/node/issues/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>
This commit is contained in:
Gergely Imreh 2019-05-02 10:26:53 +01:00
parent f2bd3c0ffb
commit b6f3975bc1
No known key found for this signature in database
GPG Key ID: 2159E9E41D38A9EB
2 changed files with 3 additions and 3 deletions

View File

@ -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' ])

View File

@ -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",