diff options
author | Sam Potts <sam@selz.com> | 2015-07-20 14:44:51 +1000 |
---|---|---|
committer | Sam Potts <sam@selz.com> | 2015-07-20 14:44:51 +1000 |
commit | 93cc9edd9a7417e744ac17a5c59a37ed64a38d73 (patch) | |
tree | 565c536444a2263e9ca4a8d6497e9cde60b4ea8c /gulpfile.js | |
parent | 654e9cd623212a5bebf3930972ef04d5e2d2bbcb (diff) | |
download | plyr-93cc9edd9a7417e744ac17a5c59a37ed64a38d73.tar.lz plyr-93cc9edd9a7417e744ac17a5c59a37ed64a38d73.tar.xz plyr-93cc9edd9a7417e744ac17a5c59a37ed64a38d73.zip |
Added icon prefix option for when using default controls
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 |