From 74eaf48ceb1bbaa77e3948e6bb5fb1d9de3b4d79 Mon Sep 17 00:00:00 2001 From: Athou Date: Tue, 2 Jun 2015 08:45:16 +0200 Subject: [PATCH] upgrade gulp-minify-css and remove workaround (#734) --- gulpfile.js | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index e1902a67..d9d3f736 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -79,7 +79,7 @@ gulp.task('build', ['images', 'i18n', 'resources', 'sass', 'fonts', 'select2', ' var cssFilter = filter("**/*.css"); return gulp.src([SRC_DIR + 'index.html', TEMP_DIR + 'app.css']).pipe(assets) - .pipe(cssFilter).pipe(minifyCSS({rebase: false})).pipe(cssFilter.restore()) + .pipe(cssFilter).pipe(minifyCSS()).pipe(cssFilter.restore()) .pipe(jsFilter).pipe(uglify()).pipe(jsFilter.restore()) diff --git a/package.json b/package.json index 6a075410..f8c093d0 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "gulp": "3.8.11", "gulp-rev": "4.0.0", "gulp-rev-replace": "0.4.1", - "gulp-minify-css": "1.1.3", + "gulp-minify-css": "1.1.4", "gulp-uglify": "1.2.0", "gulp-filter": "2.0.2", "gulp-connect": "2.2.0",