Fix per debug js

This commit is contained in:
loviuz 2022-08-01 10:33:47 +02:00
parent 513bfea92c
commit 44f85a342f
1 changed files with 1 additions and 1 deletions

View File

@ -310,7 +310,7 @@ function password_strength() {
config.nodeDirectory + '/pwstrength-bootstrap/dist/*.js',
])
.pipe(concat('password.min.js'))
.pipe(minifyJS())
.pipe(gulpIf(!config.debug, minifyJS()))
.pipe(gulp.dest(config.production + '/password-strength'));
}