Closed rob-bar closed 9 years ago
gulp.task "default", [ "scss" "scss-lint" "js" "jshint" "watch" ]
gulp.task "watch", -> gulp.watch paths.jade, ["templates"] #make it watch templates and then clear drupal cache for example gulp.watch paths.scss, ["scss"] # gulp.watch paths.scss, ["scss-lint"] gulp.watch paths.js, ["js"] gulp.watch paths.jshint, ["jshint"]
gulp.task "install", [ "bower" "icons" ] gulp.task "bower", -> bower() .pipe gulp.dest paths.bower gulp.task "icons", -> gulp.src paths.bower + "/fontawesome/fonts/**.*" .pipe gulp.dest "./dist/fonts"
gulp.task "serve", [ "browser-sync" "watch" ], -> #other stuff to watch with browser-sync