mirror of
https://github.com/balena-io/balena-cli.git
synced 2024-12-24 07:46:39 +00:00
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:
parent
f2bd3c0ffb
commit
b6f3975bc1
@ -31,10 +31,10 @@ gulp.task 'test', ->
|
|||||||
reporter: 'spec'
|
reporter: 'spec'
|
||||||
}))
|
}))
|
||||||
|
|
||||||
gulp.task 'build', [
|
gulp.task 'build', gulp.series [
|
||||||
'coffee',
|
'coffee',
|
||||||
'pages'
|
'pages'
|
||||||
]
|
]
|
||||||
|
|
||||||
gulp.task 'watch', [ 'build' ], ->
|
gulp.task 'watch', gulp.series [ 'build' ], ->
|
||||||
gulp.watch([ OPTIONS.files.coffee ], [ 'build' ])
|
gulp.watch([ OPTIONS.files.coffee ], [ 'build' ])
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
"ent": "^2.2.0",
|
"ent": "^2.2.0",
|
||||||
"filehound": "^1.16.2",
|
"filehound": "^1.16.2",
|
||||||
"fs-extra": "^5.0.0",
|
"fs-extra": "^5.0.0",
|
||||||
"gulp": "^3.9.0",
|
"gulp": "^4.0.1",
|
||||||
"gulp-coffee": "^2.2.0",
|
"gulp-coffee": "^2.2.0",
|
||||||
"gulp-inline-source": "^2.1.0",
|
"gulp-inline-source": "^2.1.0",
|
||||||
"gulp-mocha": "^2.0.0",
|
"gulp-mocha": "^2.0.0",
|
||||||
|
Loading…
Reference in New Issue
Block a user