diff --git a/gulpfile.js b/gulpfile.js index be8ba3c12..867fe6473 100755 --- a/gulpfile.js +++ b/gulpfile.js @@ -51,7 +51,7 @@ gulp.task('JS', function () { debugging: config.debug, })) .pipe(concat('app.min.js')) - .pipe(minifyJS()) + .pipe(minifyJS()) // Commentare per togliere la minificazione .pipe(gulp.dest(config.production + '/' + config.paths.js)); gulp.start('srcJS'); @@ -63,14 +63,14 @@ gulp.task('srcJS', function () { config.development + '/' + config.paths.js + '/*.js', ]) .pipe(concat('custom.min.js')) - .pipe(minifyJS()) + .pipe(minifyJS()) // Commentare per togliere la minificazione .pipe(gulp.dest(config.production + '/' + config.paths.js)); gulp.src([ config.development + '/' + config.paths.js + '/functions/*.js', ]) .pipe(concat('functions.min.js')) - .pipe(minifyJS()) + .pipe(minifyJS()) // Commentare per togliere la minificazione .pipe(gulp.dest(config.production + '/' + config.paths.js)); }); diff --git a/package.json b/package.json index 053fd7e80..0d4401c37 100755 --- a/package.json +++ b/package.json @@ -21,7 +21,7 @@ "geocomplete": "^1.7.0", "hotkeys-js": "3.7.3", "inputmask": "3.3.9", - "jquery": "^3.2.1", + "jquery": "3.4.1", "jquery-form": "^4.2.1", "jquery-ui-touch-punch": "^0.2.3", "jquery.shorten": "^1.0.0",