aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
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