2017-08-04 16:28:16 +02:00
|
|
|
// Librerie NPM richieste per l'esecuzione
|
|
|
|
var gulp = require('gulp');
|
2020-06-30 13:24:55 +02:00
|
|
|
var merge = require('merge-stream');
|
2017-08-04 16:28:16 +02:00
|
|
|
var del = require('del');
|
|
|
|
var debug = require('gulp-debug');
|
|
|
|
var shell = require('shelljs');
|
|
|
|
|
|
|
|
var mainBowerFiles = require('main-bower-files');
|
|
|
|
var gulpIf = require('gulp-if');
|
|
|
|
|
|
|
|
// Minificatori
|
|
|
|
var minifyJS = require('gulp-uglify');
|
|
|
|
var minifyCSS = require('gulp-clean-css');
|
|
|
|
var minifyJSON = require('gulp-json-minify');
|
|
|
|
|
|
|
|
// Interpretatori CSS
|
|
|
|
var sass = require('gulp-sass');
|
|
|
|
var less = require('gulp-less');
|
|
|
|
var stylus = require('gulp-stylus');
|
|
|
|
var autoprefixer = require('gulp-autoprefixer');
|
|
|
|
|
|
|
|
// Concatenatore
|
|
|
|
var concat = require('gulp-concat');
|
|
|
|
|
|
|
|
// Altro
|
|
|
|
var flatten = require('gulp-flatten');
|
|
|
|
var rename = require('gulp-rename');
|
2017-12-30 12:05:09 +01:00
|
|
|
var inquirer = require('inquirer');
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Configurazione
|
|
|
|
var config = {
|
|
|
|
production: 'assets/dist', // Cartella di destinazione
|
|
|
|
development: 'assets/src', // Cartella dei file di personalizzazione
|
|
|
|
debug: false,
|
|
|
|
main: {
|
|
|
|
bowerDirectory: './node_modules',
|
|
|
|
bowerJson: './package.json',
|
|
|
|
},
|
|
|
|
paths: {
|
|
|
|
js: 'js',
|
|
|
|
css: 'css',
|
|
|
|
images: 'img',
|
|
|
|
fonts: 'fonts'
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// Elaborazione e minificazione di JS
|
2020-06-30 13:24:55 +02:00
|
|
|
const JS = gulp.parallel(() => {
|
|
|
|
return gulp.src(mainBowerFiles('**/*.js', {
|
|
|
|
paths: config.main,
|
|
|
|
debugging: config.debug,
|
|
|
|
}))
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(concat('app.min.js'))
|
2020-06-30 13:24:55 +02:00
|
|
|
//.pipe(minifyJS())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
2020-06-30 13:24:55 +02:00
|
|
|
}, srcJS);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Elaborazione e minificazione di JS personalizzati
|
2020-06-30 13:24:55 +02:00
|
|
|
function srcJS() {
|
|
|
|
var js = gulp.src([
|
|
|
|
config.development + '/' + config.paths.js + '/*.js',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(concat('custom.min.js'))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(minifyJS())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
2019-07-26 17:40:52 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
var indip = gulp.src([
|
2019-07-26 17:40:52 +02:00
|
|
|
config.development + '/' + config.paths.js + '/functions/*.js',
|
|
|
|
])
|
|
|
|
.pipe(concat('functions.min.js'))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(minifyJS())
|
2019-07-26 17:40:52 +02:00
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js));
|
2020-06-30 13:24:55 +02:00
|
|
|
|
|
|
|
return merge(js, indip);
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Elaborazione e minificazione di CSS
|
2020-06-30 13:24:55 +02:00
|
|
|
const CSS = gulp.parallel(() => {
|
|
|
|
return gulp.src(mainBowerFiles('**/*.{css,scss,less,styl}', {
|
|
|
|
paths: config.main,
|
|
|
|
debugging: config.debug,
|
|
|
|
}))
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(autoprefixer())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(minifyCSS({
|
|
|
|
rebase: false,
|
|
|
|
}))
|
|
|
|
.pipe(concat('app.min.css'))
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.css));
|
2020-06-30 13:24:55 +02:00
|
|
|
}, srcCSS);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Elaborazione e minificazione di CSS personalizzati
|
2020-06-30 13:24:55 +02:00
|
|
|
function srcCSS() {
|
|
|
|
var css = gulp.src([
|
|
|
|
config.development + '/' + config.paths.css + '/*.{css,scss,less,styl}',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(autoprefixer())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(minifyCSS({
|
|
|
|
rebase: false,
|
|
|
|
}))
|
|
|
|
.pipe(concat('style.min.css'))
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.css));
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
var print = gulp.src([
|
|
|
|
config.development + '/' + config.paths.css + '/print/*.{css,scss,less,styl}',
|
|
|
|
config.bowerDirectory + '/fullcalendar/fullcalendar.print.css',
|
|
|
|
], {
|
|
|
|
allowEmpty: true
|
|
|
|
})
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(autoprefixer())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(minifyCSS({
|
|
|
|
rebase: false,
|
|
|
|
}))
|
|
|
|
.pipe(concat('print.min.css'))
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.css));
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
var themes = gulp.src([
|
|
|
|
config.development + '/' + config.paths.css + '/themes/*.{css,scss,less,styl}',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('*.scss', sass(), gulpIf('*.less', less(), gulpIf('*.styl', stylus()))))
|
2020-06-30 13:24:55 +02:00
|
|
|
.pipe(autoprefixer())
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(minifyCSS({
|
|
|
|
rebase: false,
|
|
|
|
}))
|
|
|
|
.pipe(concat('themes.min.css'))
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.css));
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
return merge(css, print, themes);
|
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
// Elaborazione delle immagini
|
|
|
|
const images = srcImages;
|
|
|
|
/*
|
|
|
|
gulp.parallel(() => {*/
|
|
|
|
//var src = mainBowerFiles('**/*.{jpg,png,jpeg,gif}', {
|
|
|
|
/*
|
|
|
|
paths: config.main,
|
|
|
|
debugging: config.debug,
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
return gulp.src(src, {
|
|
|
|
allowEmpty: true
|
|
|
|
})
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.images));
|
|
|
|
}, srcImages);
|
|
|
|
*/
|
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
// Elaborazione delle immagini personalizzate
|
2020-06-30 13:24:55 +02:00
|
|
|
function srcImages() {
|
|
|
|
return gulp.src([
|
|
|
|
config.development + '/' + config.paths.images + '/**/*.{jpg,png,jpeg,gif}',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.images));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
|
|
|
|
// Elaborazione dei fonts
|
2020-06-30 13:24:55 +02:00
|
|
|
const fonts = gulp.parallel(() => {
|
|
|
|
return gulp.src(mainBowerFiles('**/*.{otf,eot,svg,ttf,woff,woff2}', {
|
|
|
|
paths: config.main,
|
|
|
|
debugging: config.debug,
|
|
|
|
}))
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.fonts));
|
2020-06-30 13:24:55 +02:00
|
|
|
}, srcFonts);
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Elaborazione dei fonts personalizzati
|
2020-06-30 13:24:55 +02:00
|
|
|
function srcFonts() {
|
|
|
|
return gulp.src([
|
|
|
|
config.development + '/' + config.paths.fonts + '/**/*.{otf,eot,svg,ttf,woff,woff2}',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.fonts));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function ckeditor() {
|
|
|
|
return gulp.src([
|
|
|
|
config.main.bowerDirectory + '/@ckeditor/ckeditor5-build-classic/build/**/*.{js,json,css,png}',
|
|
|
|
])
|
2017-09-22 14:37:18 +02:00
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/ckeditor'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function colorpicker() {
|
|
|
|
return gulp.src([
|
|
|
|
config.main.bowerDirectory + '/bootstrap-colorpicker/dist/**/*.{jpg,png,jpeg}',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.images + '/bootstrap-colorpicker'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function password_strength(){
|
|
|
|
return gulp.src([
|
2019-07-18 18:33:56 +02:00
|
|
|
config.main.bowerDirectory + '/pwstrength-bootstrap/dist/*.js',
|
|
|
|
])
|
|
|
|
.pipe(concat('password.min.js'))
|
|
|
|
.pipe(minifyJS())
|
|
|
|
.pipe(gulp.dest(config.production + '/password-strength'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2019-07-18 18:33:56 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function hotkeys() {
|
|
|
|
return gulp.src([
|
2020-02-20 02:02:01 +01:00
|
|
|
config.main.bowerDirectory + '/hotkeys-js/dist/hotkeys.min.js',
|
|
|
|
])
|
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/hotkeys-js'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2020-02-20 02:02:01 +01:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function chartjs() {
|
|
|
|
return gulp.src([
|
|
|
|
config.main.bowerDirectory + '/chart.js/dist/Chart.min.js',
|
|
|
|
])
|
2017-09-18 15:45:47 +02:00
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/chartjs'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-09-18 15:45:47 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
function csrf() {
|
|
|
|
return gulp.src([
|
|
|
|
'./vendor/owasp/csrf-protector-php/js/csrfprotector.js',
|
|
|
|
])
|
2018-07-08 18:25:36 +02:00
|
|
|
.pipe(flatten())
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/csrf'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function pdfjs() {
|
|
|
|
var web = gulp.src([
|
|
|
|
config.main.bowerDirectory + '/pdf/web/**/*',
|
|
|
|
'!' + config.main.bowerDirectory + '/pdf/web/cmaps/*',
|
|
|
|
'!' + config.main.bowerDirectory + '/pdf/web/*.map',
|
|
|
|
'!' + config.main.bowerDirectory + '/pdf/web/*.pdf',
|
|
|
|
])
|
2017-12-30 14:13:11 +01:00
|
|
|
.pipe(gulp.dest(config.production + '/pdfjs/web'));
|
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
var build = gulp.src([
|
|
|
|
config.main.bowerDirectory + '/pdf/build/*',
|
|
|
|
'!' + config.main.bowerDirectory + '/pdf/build/*.map',
|
|
|
|
])
|
2017-12-30 14:13:11 +01:00
|
|
|
.pipe(gulp.dest(config.production + '/pdfjs/build'));
|
2020-06-30 13:24:55 +02:00
|
|
|
|
|
|
|
return merge(web, build);
|
|
|
|
}
|
2017-12-20 14:05:14 +01:00
|
|
|
|
2017-08-04 16:28:16 +02:00
|
|
|
// Elaborazione e minificazione delle informazioni sull'internazionalizzazione
|
2020-06-30 13:24:55 +02:00
|
|
|
function i18n() {
|
|
|
|
return gulp.src([
|
|
|
|
config.main.bowerDirectory + '/**/{i18n,lang,locale,locales}/*.{js,json}',
|
|
|
|
config.development + '/' + config.paths.js + '/i18n/**/*.{js,json}',
|
|
|
|
'!' + config.main.bowerDirectory + '/**/{src,plugins}/**',
|
|
|
|
'!' + config.main.bowerDirectory + '/ckeditor/**',
|
|
|
|
'!' + config.main.bowerDirectory + '/summernote/**',
|
|
|
|
'!' + config.main.bowerDirectory + '/jquery-ui/**',
|
|
|
|
])
|
|
|
|
//.pipe(gulpIf('*.js', minifyJS(), gulpIf('*.json', minifyJSON())))
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('!*.min.*', rename({
|
|
|
|
suffix: '.min'
|
|
|
|
})))
|
|
|
|
.pipe(flatten({
|
|
|
|
includeParents: 1
|
|
|
|
}))
|
|
|
|
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/i18n'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// PHP DebugBar assets
|
2020-06-30 13:24:55 +02:00
|
|
|
function phpDebugBar() {
|
|
|
|
return gulp.src([
|
|
|
|
'./vendor/maximebf/debugbar/src/DebugBar/Resources/**/*',
|
|
|
|
'!./vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/**/*',
|
|
|
|
])
|
2017-08-04 16:28:16 +02:00
|
|
|
.pipe(gulpIf('*.css', minifyCSS(), gulpIf('*.js', minifyJS())))
|
|
|
|
.pipe(gulp.dest(config.production + '/php-debugbar'));
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Operazioni per la release
|
2020-06-30 13:50:41 +02:00
|
|
|
function release(done) {
|
2017-08-04 16:28:16 +02:00
|
|
|
var archiver = require('archiver');
|
|
|
|
var fs = require('fs');
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Rimozione file indesiderati
|
2017-08-04 16:28:16 +02:00
|
|
|
del([
|
|
|
|
'./vendor/tecnickcom/tcpdf/fonts/*',
|
|
|
|
'!./vendor/tecnickcom/tcpdf/fonts/*helvetica*',
|
2018-01-02 17:01:47 +01:00
|
|
|
'./vendor/mpdf/mpdf/tmp/*',
|
2017-09-08 13:24:48 +02:00
|
|
|
'./vendor/mpdf/mpdf/ttfonts/*',
|
2018-01-13 09:54:08 +01:00
|
|
|
'!./vendor/mpdf/mpdf/ttfonts/DejaVuinfo.txt',
|
|
|
|
'!./vendor/mpdf/mpdf/ttfonts/DejaVu*Condensed*',
|
2017-10-16 11:57:45 +02:00
|
|
|
'./vendor/maximebf/debugbar/src/DebugBar/Resources/vendor/*',
|
2018-06-26 14:26:40 +02:00
|
|
|
'./vendor/respect/validation/tests/*',
|
2017-08-04 16:28:16 +02:00
|
|
|
]);
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Impostazione dello zip
|
2017-08-04 16:28:16 +02:00
|
|
|
var output = fs.createWriteStream('./release.zip');
|
|
|
|
var archive = archiver('zip');
|
|
|
|
|
2017-09-08 13:24:48 +02:00
|
|
|
output.on('close', function () {
|
2017-08-07 13:07:18 +02:00
|
|
|
console.log('ZIP completato!');
|
2017-08-04 16:28:16 +02:00
|
|
|
});
|
|
|
|
|
2017-09-08 13:24:48 +02:00
|
|
|
archive.on('error', function (err) {
|
2017-08-04 16:28:16 +02:00
|
|
|
throw err;
|
|
|
|
});
|
|
|
|
|
|
|
|
archive.pipe(output);
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Aggiunta dei file
|
2017-08-04 16:28:16 +02:00
|
|
|
archive.glob('**/*', {
|
|
|
|
dot: true,
|
|
|
|
ignore: [
|
2017-08-04 18:46:02 +02:00
|
|
|
'.git/**',
|
2017-08-04 16:28:16 +02:00
|
|
|
'node_modules/**',
|
|
|
|
'backup/**',
|
|
|
|
'files/**',
|
2017-08-07 13:07:18 +02:00
|
|
|
'logs/**',
|
2017-08-04 16:28:16 +02:00
|
|
|
'config.inc.php',
|
2018-09-03 17:28:43 +02:00
|
|
|
'**/*.lock',
|
|
|
|
'**/*.phar',
|
2017-08-04 16:28:16 +02:00
|
|
|
'**/*.log',
|
|
|
|
'**/*.zip',
|
|
|
|
'**/*.bak',
|
2018-09-03 17:28:43 +02:00
|
|
|
'**/*.jar',
|
|
|
|
'**/*.txt',
|
2017-08-04 16:28:16 +02:00
|
|
|
'**/~*',
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Eccezioni
|
2017-08-04 16:28:16 +02:00
|
|
|
archive.file('backup/.htaccess');
|
|
|
|
archive.file('files/.htaccess');
|
|
|
|
archive.file('files/my_impianti/componente.ini');
|
2017-08-07 13:07:18 +02:00
|
|
|
archive.file('logs/.htaccess');
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Aggiunta del commit corrente nel file REVISION
|
|
|
|
archive.append(shell.exec('git rev-parse --short HEAD', {
|
|
|
|
silent: true
|
|
|
|
}).stdout, {
|
|
|
|
name: 'REVISION'
|
|
|
|
});
|
|
|
|
|
|
|
|
// Opzioni sulla release
|
2017-12-30 12:10:06 +01:00
|
|
|
inquirer.prompt([{
|
|
|
|
type: 'input',
|
|
|
|
name: 'version',
|
|
|
|
message: 'Numero di versione:',
|
|
|
|
}, {
|
2017-12-30 12:05:09 +01:00
|
|
|
type: 'confirm',
|
|
|
|
name: 'beta',
|
|
|
|
message: 'Versione beta?',
|
|
|
|
default: false,
|
2017-12-30 12:10:06 +01:00
|
|
|
}]).then(function (result) {
|
|
|
|
version = result.version;
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
if (result.beta) {
|
2017-12-30 12:10:06 +01:00
|
|
|
version += 'beta';
|
2017-12-30 12:05:09 +01:00
|
|
|
}
|
|
|
|
|
2017-12-30 12:10:06 +01:00
|
|
|
archive.append(version, {
|
|
|
|
name: 'VERSION'
|
|
|
|
});
|
|
|
|
|
2017-12-30 12:05:09 +01:00
|
|
|
// Completamento dello zip
|
|
|
|
archive.finalize();
|
2020-06-30 13:50:41 +02:00
|
|
|
|
|
|
|
done();
|
2018-09-20 12:05:22 +02:00
|
|
|
});
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Pulizia
|
2020-06-30 13:24:55 +02:00
|
|
|
function clean() {
|
2017-08-04 16:28:16 +02:00
|
|
|
return del([config.production]);
|
2020-06-30 13:24:55 +02:00
|
|
|
}
|
2017-08-04 16:28:16 +02:00
|
|
|
|
|
|
|
// Operazioni di default per la generazione degli assets
|
2020-06-30 13:24:55 +02:00
|
|
|
const bower = gulp.series(clean, gulp.parallel(JS, CSS, images, fonts, phpDebugBar, ckeditor, colorpicker, i18n, pdfjs, hotkeys, chartjs, password_strength, csrf));
|
2017-08-04 16:28:16 +02:00
|
|
|
|
2020-06-30 13:24:55 +02:00
|
|
|
exports.bower = bower;
|
|
|
|
exports.release = release;
|
|
|
|
exports.default = bower;
|