aboutsummaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSam Potts <sam@potts.es>2017-04-25 22:39:14 +1000
committerSam Potts <sam@potts.es>2017-04-25 22:39:14 +1000
commitb3d798eeeecc066ced3582d333944f350628de0d (patch)
tree60ce48d523fe461dab4e09fdbcae30a27b734744 /gulpfile.js
parentf5d80fa888bf9c1fae7248faa0bd4d68580e4803 (diff)
downloadplyr-b3d798eeeecc066ced3582d333944f350628de0d.tar.lz
plyr-b3d798eeeecc066ced3582d333944f350628de0d.tar.xz
plyr-b3d798eeeecc066ced3582d333944f350628de0d.zip
Gulp tweak
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 7b891b3b..3a3d9ee9 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -126,7 +126,7 @@ var build = {
.pipe(less())
.on("error", gutil.log)
.pipe(concat(key))
- .pipe(prefix(["last 2 versions"], { cascade: true }))
+ .pipe(prefix(["last 2 versions"], { cascade: false }))
.pipe(cleanCSS())
.pipe(gulp.dest(paths[bundle].output));
});
@@ -145,7 +145,7 @@ var build = {
.pipe(sass())
.on("error", gutil.log)
.pipe(concat(key))
- .pipe(prefix(["last 2 versions"], { cascade: true }))
+ .pipe(prefix(["last 2 versions"], { cascade: false }))
.pipe(cleanCSS())
.pipe(gulp.dest(paths[bundle].output));
});