production環境の時だけimageminするように

This commit is contained in:
syuilo 2017-01-20 10:06:28 +09:00
parent c5cf2eef0d
commit 2a21095299

View file

@ -242,7 +242,7 @@ gulp.task('copy:client', [
'./src/web/resources/**/*', './src/web/resources/**/*',
'./src/web/app/*/resources/**/*' './src/web/app/*/resources/**/*'
]) ])
.pipe(imagemin()) .pipe(isProduction ? imagemin() : gutil.noop())
.pipe(rename(path => { .pipe(rename(path => {
path.dirname = path.dirname.replace('resources', '.'); path.dirname = path.dirname.replace('resources', '.');
})) }))