From fe1989dea10dbb8ad7c4bf358d88c00b3592996e Mon Sep 17 00:00:00 2001 From: Sam Potts Date: Sat, 25 Jul 2015 22:06:13 +1000 Subject: [PATCH] gulp --- docs/index.html | 2 +- gulpfile.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/index.html b/docs/index.html index 273b5bb4..5205c4f6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -8,7 +8,7 @@ - + diff --git a/gulpfile.js b/gulpfile.js index 76d6cb81..547bbcba 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -165,11 +165,6 @@ build.templates(); build.less(bundles.docs.less, "docs"); build.js(bundles.docs.js, "docs"); -// Default gulp task -gulp.task("default", function(){ - run("templates", tasks.js, tasks.less, "sprite", "watch"); -}); - // Build all JS (inc. templates) gulp.task("js", function(){ run("templates", tasks.js); @@ -193,6 +188,11 @@ gulp.task("watch", function () { gulp.watch(paths.docs.src.templates, ["js"]); }); +// Default gulp task +gulp.task("default", function(){ + run("templates", tasks.js, tasks.less, "sprite", "watch"); +}); + // Publish a version to CDN and docs // --------------------------------------------