Bugfix causato dalla nuova versione di JQuery

This commit is contained in:
Thomas Zilio 2020-04-28 18:56:26 +02:00
parent 4bea2c8e40
commit 398f43813e
2 changed files with 4 additions and 4 deletions

View File

@ -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));
});

View File

@ -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",