mirror of
https://github.com/fulpstation/fulpstation.git
synced 2025-12-09 16:09:15 +00:00
18 lines
346 B
CoffeeScript
18 lines
346 B
CoffeeScript
c = require "../config"
|
|
p = c.paths
|
|
|
|
gulp = require "gulp"
|
|
|
|
build = require "./build"
|
|
clean = require "./clean"
|
|
reload = require "./reload"
|
|
|
|
|
|
module.exports = ->
|
|
paths = []
|
|
for i,path of p
|
|
paths.push "#{path.dir}**" if path.dir
|
|
|
|
gulp.watch paths, gulp.series clean, build, reload
|
|
module.exports.displayName = "watch"
|