From 44f85a342fabcf1d6d7c917c35a403d80416c73e Mon Sep 17 00:00:00 2001 From: loviuz Date: Mon, 1 Aug 2022 10:33:47 +0200 Subject: [PATCH] Fix per debug js --- gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulpfile.js b/gulpfile.js index e955f4d07..4b8ab7eeb 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -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')); }