diff options
-rw-r--r-- | docs/index.html | 2 | ||||
-rw-r--r-- | 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 @@ <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 // -------------------------------------------- |