Bugfix causato dalla nuova versione di JQuery
This commit is contained in:
parent
4bea2c8e40
commit
398f43813e
|
@ -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));
|
||||
});
|
||||
|
||||
|
|
|
@ -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",
|
||||
|
|
Loading…
Reference in New Issue