use minified css in bundle

This commit is contained in:
Roman Hotsiy 2016-01-23 14:19:22 +02:00
parent e67ab9c3ea
commit 78e8618466

View File

@ -55,7 +55,7 @@ var JS_DEV_DEPS_MIN = [
gulp.task('sass', function () {
return gulp.src(paths.scss, { base: './' })
.pipe(sass.sync().on('error', sass.logError))
.pipe(sass.sync({outputStyle: 'compressed'}).on('error', sass.logError))
.pipe(gulp.dest(paths.tmp));
});