diff --git a/gulpfile.coffee b/gulpfile.coffee index e8464145..314befa6 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -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' ]) diff --git a/package.json b/package.json index fa0cdae5..3df29376 100644 --- a/package.json +++ b/package.json @@ -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",