From 7ec128a0ec2b560a2c5145d9caf4d06cac117a75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Norman=20J=C3=A4ckel?= Date: Sun, 15 Jan 2017 00:39:07 +0100 Subject: [PATCH] Fixed gulp. --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index 5256b426d..95a75a017 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -90,7 +90,7 @@ gulp.task('css-libs', function () { filter: /\.css$/ })) .pipe(concat('openslides-libs.css')) - .pipe(gulpif(argv.production, cssnano({discardUnused: false}))) + .pipe(gulpif(argv.production, cssnano({safe: true}))) .pipe(gulp.dest(path.join(output_directory, 'css'))); });