aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2015-07-25 22:06:13 +1000
committerSam Potts <me@sampotts.me>2015-07-25 22:06:13 +1000
commitfe1989dea10dbb8ad7c4bf358d88c00b3592996e (patch)
treeb83c0cf46795e80b912e54e9c80d1a804feb1014
parent5d19b438884dcb0dd203d6dccc146ca889657b3b (diff)
downloadplyr-fe1989dea10dbb8ad7c4bf358d88c00b3592996e.tar.lz
plyr-fe1989dea10dbb8ad7c4bf358d88c00b3592996e.tar.xz
plyr-fe1989dea10dbb8ad7c4bf358d88c00b3592996e.zip
gulp
-rw-r--r--docs/index.html2
-rw-r--r--gulpfile.js10
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 @@
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Styles -->
- <link rel="stylesheet" href="https://cdn.plyr.io/1.2.5/plyr.css?1">
+ <link rel="stylesheet" href="https://cdn.plyr.io/1.2.5/plyr.css?2">
<!-- Docs styles -->
<link rel="stylesheet" href="https://cdn.plyr.io/1.2.5/docs.css?1">
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
// --------------------------------------------