aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2015-02-15 11:03:06 +1100
committerSam Potts <me@sampotts.me>2015-02-15 11:03:06 +1100
commit63c1d04d72845ecaf82df14ca06300b0d220def9 (patch)
tree34cb3dfd078ed81c75e1dc94ef85b9bf4b705c68 /gulpfile.js
parent61970a948e0a75d6bdbb14f40370eb952765e70c (diff)
downloadplyr-63c1d04d72845ecaf82df14ca06300b0d220def9.tar.lz
plyr-63c1d04d72845ecaf82df14ca06300b0d220def9.tar.xz
plyr-63c1d04d72845ecaf82df14ca06300b0d220def9.zip
Improved plugin syntax, refactoring...
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 600b384b..71dad55f 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -132,8 +132,8 @@ gulp.task(taskNames.jsAll, function(){
// Watch for file changes
gulp.task("watch", function () {
- gulp.watch(paths.watchtemplates, taskNames.jsAll);
- gulp.watch(paths.watchjs, taskNames.jsAll);
+ //gulp.watch(paths.watchtemplates, [taskNames.jsAll]);
+ //gulp.watch(paths.watchjs, [taskNames.jsAll]);
gulp.watch(paths.watchless, lessBuildTasks);
- gulp.watch(paths.watchicons, taskNames.iconBuild);
+ gulp.watch(paths.watchicons, [taskNames.iconBuild]);
}); \ No newline at end of file