Skip to content

Commit e8f9824

Browse files
Fixing gulp size if not is production
1 parent eaac0af commit e8f9824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/stylesheets.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ module.exports = (gulp, options, othersTasks = []) => {
2828
.pipe(opts.gzip ? $.gzip({
2929
append: false
3030
}) : $.util.noop())
31-
.pipe((isProduction && opts.size) ? $.size({
31+
.pipe((!isProduction && opts.size) ? $.size({
3232
title: `Gulp task ${taskname}`,
3333
showFiles: true
3434
}) : $.util.noop())

0 commit comments

Comments
 (0)