use new syntax to combine tasks, gulp.run is deprecated

This commit is contained in:
Riku Rouvila
2014-02-28 09:59:02 +02:00
parent 4412785d21
commit 4fe269f305

View File

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