From 4fe269f305e08b550b96d02325b6c6101d3a09f1 Mon Sep 17 00:00:00 2001 From: Riku Rouvila Date: Fri, 28 Feb 2014 09:59:02 +0200 Subject: [PATCH] use new syntax to combine tasks, gulp.run is deprecated --- gulpfile.coffee | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/gulpfile.coffee b/gulpfile.coffee index fd697bf..51dbc07 100644 --- a/gulpfile.coffee +++ b/gulpfile.coffee @@ -80,8 +80,5 @@ gulp.task "watch", -> gulp.watch "src/stylus/*.styl", ["stylus"] gulp.watch "src/assets/**/*.*", ["assets"] -gulp.task "build", -> - gulp.run "coffee-production", "jade-production", "stylus-production", "assets-production" - -gulp.task "default", -> - gulp.run "coffee", "jade", "stylus", "assets", "watch", "server" +gulp.task "build", ["coffee-production", "jade-production", "stylus-production", "assets-production"] +gulp.task "default", ["coffee", "jade", "stylus", "assets", "watch", "server"]