From 4a52bd0cb736d8a41a7fa4a1c3f26a801e14c6f0 Mon Sep 17 00:00:00 2001 From: RavenB Date: Sun, 31 May 2015 20:35:43 +0200 Subject: [PATCH 1/2] fix for #734 and allowing version bump of minicss --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d9d3f736..e1902a67 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()).pipe(cssFilter.restore()) + .pipe(cssFilter).pipe(minifyCSS({rebase: false})).pipe(cssFilter.restore()) .pipe(jsFilter).pipe(uglify()).pipe(jsFilter.restore()) From a0b5a1462d671faabd847f0beb06424e890e5d1f Mon Sep 17 00:00:00 2001 From: RavenB Date: Sun, 31 May 2015 20:39:32 +0200 Subject: [PATCH 2/2] version bump to latest minicss in gulpfile was corrected gulp-minify can now be safely upgraded. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6de889da..6a075410 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.0", + "gulp-minify-css": "1.1.3", "gulp-uglify": "1.2.0", "gulp-filter": "2.0.2", "gulp-connect": "2.2.0",