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,
|
debugging: config.debug,
|
||||||
}))
|
}))
|
||||||
.pipe(concat('app.min.js'))
|
.pipe(concat('app.min.js'))
|
||||||
.pipe(minifyJS())
|
.pipe(minifyJS()) // Commentare per togliere la minificazione
|
||||||
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
||||||
|
|
||||||
gulp.start('srcJS');
|
gulp.start('srcJS');
|
||||||
|
@ -63,14 +63,14 @@ gulp.task('srcJS', function () {
|
||||||
config.development + '/' + config.paths.js + '/*.js',
|
config.development + '/' + config.paths.js + '/*.js',
|
||||||
])
|
])
|
||||||
.pipe(concat('custom.min.js'))
|
.pipe(concat('custom.min.js'))
|
||||||
.pipe(minifyJS())
|
.pipe(minifyJS()) // Commentare per togliere la minificazione
|
||||||
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
||||||
|
|
||||||
gulp.src([
|
gulp.src([
|
||||||
config.development + '/' + config.paths.js + '/functions/*.js',
|
config.development + '/' + config.paths.js + '/functions/*.js',
|
||||||
])
|
])
|
||||||
.pipe(concat('functions.min.js'))
|
.pipe(concat('functions.min.js'))
|
||||||
.pipe(minifyJS())
|
.pipe(minifyJS()) // Commentare per togliere la minificazione
|
||||||
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
"geocomplete": "^1.7.0",
|
"geocomplete": "^1.7.0",
|
||||||
"hotkeys-js": "3.7.3",
|
"hotkeys-js": "3.7.3",
|
||||||
"inputmask": "3.3.9",
|
"inputmask": "3.3.9",
|
||||||
"jquery": "^3.2.1",
|
"jquery": "3.4.1",
|
||||||
"jquery-form": "^4.2.1",
|
"jquery-form": "^4.2.1",
|
||||||
"jquery-ui-touch-punch": "^0.2.3",
|
"jquery-ui-touch-punch": "^0.2.3",
|
||||||
"jquery.shorten": "^1.0.0",
|
"jquery.shorten": "^1.0.0",
|
||||||
|
|
Loading…
Reference in New Issue