@@ -107,7 +107,6 @@ const JS = gulp.parallel(() => {
107107 'inputmask/dist/min/jquery.inputmask.bundle.min.js' ,
108108 'jquery-form/src/jquery.form.js' ,
109109 'jquery-ui-touch-punch/jquery.ui.touch-punch.js' ,
110- 'jquery.shorten/src/jquery.shorten.js' ,
111110 'numeral/numeral.js' ,
112111 'parsleyjs/dist/parsley.js' ,
113112 'select2/dist/js/select2.min.js' ,
@@ -309,7 +308,7 @@ function wacom(){
309308 config . development + '/' + config . paths . js + '/wacom/common/libs/signature_sdk.wasm'
310309 ] )
311310 . pipe ( gulp . dest ( config . production + '/' + config . paths . js + '/wacom/' ) ) ;
312-
311+
313312 // Poi processiamo i file JS che lo utilizzano
314313 const jsStream = gulp . src ( allFiles , {
315314 allowEmpty : true
@@ -358,7 +357,7 @@ function srcFonts() {
358357}
359358
360359function ckeditor ( ) {
361-
360+
362361 const ckeditorCore = gulp . src ( [
363362 config . nodeDirectory + '/ckeditor4/{adapters,lang,skins,plugins,core}/**/*.{js,json,css,png,gif,html}' ,
364363 config . nodeDirectory + '/ckeditor4/*.{js,css}' ,
@@ -550,7 +549,7 @@ function release(done) {
550549
551550 // Aggiunta del file per il controllo di integrità del database
552551 var bufferStream = new Readable ( ) ;
553-
552+
554553 bufferStream . push ( shell . exec ( 'php update/structure.php' , {
555554 silent : true
556555 } ) . stdout ) ;
@@ -573,7 +572,7 @@ function release(done) {
573572 bufferStream . push ( null ) ;
574573 archive . append ( bufferStream , { name : 'REVISION' } ) ;
575574
576- // Opzioni sulla release
575+ // Opzioni sulla release
577576 inquirer . prompt ( [ {
578577 type : 'input' ,
579578 name : 'version' ,
@@ -588,23 +587,23 @@ function release(done) {
588587
589588 let version = result . version ;
590589
591- // Aggiungi 'beta' solo se l'opzione beta è selezionata
590+ // Aggiungi 'beta' solo se l'opzione beta è selezionata
592591 if ( result . beta ) {
593592 version += 'beta' ;
594593 }
595594
596- // Creazione di un stream leggibile con la versione
595+ // Creazione di un stream leggibile con la versione
597596 const bufferStream = new Readable ( {
598597 read ( ) {
599598 this . push ( version ) ;
600599 this . push ( null ) ;
601600 }
602601 } ) ;
603602
604- // Aggiunta della versione corrente nel file VERSION
603+ // Aggiunta della versione corrente nel file VERSION
605604 archive . append ( bufferStream , { name : 'VERSION' } ) ;
606605
607- // Completamento dello ZIP
606+ // Completamento dello ZIP
608607 archive . finalize ( ) ;
609608
610609 done ( ) ;
0 commit comments