From 80c08a34a01017763bbdc7b7e888312a774ff4b4 Mon Sep 17 00:00:00 2001 From: Mikael Korpela Date: Fri, 15 Jan 2016 12:09:41 -0800 Subject: [PATCH] fix(build): Linting error at gulpfile.js Fixes an error occurring when running `gulp`: ```bash /mean/gulpfile.js 199:22 error A space is required after '{' object-curly-spacing 199:42 error A space is required before '}' object-curly-spacing ``` --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index d4e47ba226..eb62fc536d 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -196,7 +196,7 @@ gulp.task('imagemin', function () { return gulp.src(defaultAssets.client.img) .pipe(plugins.imagemin({ progressive: true, - svgoPlugins: [{removeViewBox: false}], + svgoPlugins: [{ removeViewBox: false }], use: [pngquant()] })) .pipe(gulp.dest('public/dist/img'));