aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <me@sampotts.me>2017-10-26 00:10:56 +1100
committerSam Potts <me@sampotts.me>2017-10-26 00:10:56 +1100
commit959b5a20e39c2ba4a05c6e417c02184ca24804cd (patch)
tree28b2cb298fae25e58ecc6e6d88d8f951931ee92d /gulpfile.js
parent9de5c0cf39f12a4e2e62b62cb68b71159b3c77ac (diff)
downloadplyr-959b5a20e39c2ba4a05c6e417c02184ca24804cd.tar.lz
plyr-959b5a20e39c2ba4a05c6e417c02184ca24804cd.tar.xz
plyr-959b5a20e39c2ba4a05c6e417c02184ca24804cd.zip
Inlined SVGs, fixed build
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js3
1 files changed, 0 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 3dc62c93..77c71b1d 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -42,7 +42,6 @@ var paths = {
src: {
less: path.join(root, 'demo/src/less/**/*'),
js: path.join(root, 'demo/src/js/**/*'),
- sprite: path.join(root, 'demo/src/sprite/**/*'),
},
// Output paths
@@ -157,7 +156,6 @@ build.sprite('plyr');
// Demo files
build.less(bundles.demo.less, 'demo');
build.js(bundles.demo.js, 'demo');
-build.sprite('demo');
// Build all JS
gulp.task('js', function() {
@@ -179,7 +177,6 @@ gulp.task('watch', function() {
// Demo
gulp.watch(paths.demo.src.js, tasks.js);
gulp.watch(paths.demo.src.less, tasks.less);
- gulp.watch(paths.demo.src.sprite, tasks.sprite);
});
// Default gulp task