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
```
This commit is contained in:
Mikael Korpela
2016-01-15 12:09:41 -08:00
parent 039d9de4a4
commit 80c08a34a0

View File

@@ -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'));