ausybenelux / Ocelot

Ocelot is a theming starter kit for drupal 7.
5 stars 2 forks source link

Gulp - grouped tasks #138

Closed rob-bar closed 9 years ago

rob-bar commented 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