diff options
author | Sam Potts <me@sampotts.me> | 2015-07-20 22:24:06 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2015-07-20 22:24:06 +1000 |
commit | cdf3deb458716ae447a43943805291550fee91c3 (patch) | |
tree | 8623b277f1708bb1557dd2e25b5a5296f7ec648f /gulpfile.js | |
parent | dcd9ca3a93a669b69f0e4fc7831bd645ce0ec3ee (diff) | |
download | plyr-cdf3deb458716ae447a43943805291550fee91c3.tar.lz plyr-cdf3deb458716ae447a43943805291550fee91c3.tar.xz plyr-cdf3deb458716ae447a43943805291550fee91c3.zip |
YouTube playback, docs update
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index 96e13368..6c84bf69 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -185,12 +185,12 @@ gulp.task("watch", function () { // Plyr core gulp.watch(paths.plyr.src.js, tasks.js); gulp.watch(paths.plyr.src.less, tasks.less); - gulp.watch(paths.plyr.src.sprite, "sprite"); + gulp.watch(paths.plyr.src.sprite, ["sprite"]); // Docs gulp.watch(paths.docs.src.js, tasks.js); gulp.watch(paths.docs.src.less, tasks.less); - gulp.watch(paths.docs.src.templates, "js"); + gulp.watch(paths.docs.src.templates, ["js"]); }); // Publish a version to CDN and docs |