Skip to content
This repository was archived by the owner on Aug 30, 2021. It is now read-only.

Commit 80c08a3

Browse files
committed
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 ```
1 parent 039d9de commit 80c08a3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

gulpfile.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ gulp.task('imagemin', function () {
196196
return gulp.src(defaultAssets.client.img)
197197
.pipe(plugins.imagemin({
198198
progressive: true,
199-
svgoPlugins: [{removeViewBox: false}],
199+
svgoPlugins: [{ removeViewBox: false }],
200200
use: [pngquant()]
201201
}))
202202
.pipe(gulp.dest('public/dist/img'));

0 commit comments

Comments
 (0)