diff options
author | Sam Potts <me@sampotts.me> | 2016-04-26 23:06:30 +1000 |
---|---|---|
committer | Sam Potts <me@sampotts.me> | 2016-04-26 23:06:30 +1000 |
commit | 81ad9cf6f79d08ca614112f50d5ad45f20a32465 (patch) | |
tree | 6554adaf51db9e0d74df1680c4fae298dbc6d184 /gulpfile.js | |
parent | 024706f2ffbf7d7f3ba7704cd63fbbde1cf166e1 (diff) | |
download | plyr-81ad9cf6f79d08ca614112f50d5ad45f20a32465.tar.lz plyr-81ad9cf6f79d08ca614112f50d5ad45f20a32465.tar.xz plyr-81ad9cf6f79d08ca614112f50d5ad45f20a32465.zip |
Audio styles, docs tweaks, package updates
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js index 5083a75b..a73ed738 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -12,7 +12,7 @@ var fs = require("fs"), uglify = require("gulp-uglify"), less = require("gulp-less"), sass = require("gulp-sass"), - minify = require("gulp-minify-css"), + cleanCSS = require("gulp-clean-css"), run = require("run-sequence"), prefix = require("gulp-autoprefixer"), svgstore = require("gulp-svgstore"), @@ -104,7 +104,7 @@ var build = { .on("error", gutil.log) .pipe(concat(key)) .pipe(prefix(["last 2 versions"], { cascade: true })) - .pipe(minify()) + .pipe(cleanCSS()) .pipe(gulp.dest(paths[bundle].output)); }); })(key); @@ -123,7 +123,7 @@ var build = { .on("error", gutil.log) .pipe(concat(key)) .pipe(prefix(["last 2 versions"], { cascade: true })) - .pipe(minify()) + .pipe(cleanCSS()) .pipe(gulp.dest(paths[bundle].output)); }); })(key); |