Use coffee script for gulp

This commit is contained in:
Oliver Davies 2016-04-12 19:36:43 +01:00
parent 534d3b11f4
commit f012d89d72
11 changed files with 97 additions and 109 deletions

5
gulp/watch.coffee Normal file
View file

@ -0,0 +1,5 @@
gulp = require 'gulp'
gulp.task 'watch', ->
gulp.watch gulp.config.sassPattern, ['styles']
gulp.watch gulp.config.assetsDir + gulp.config.jsPattern, ['scripts']