1
0
mirror of https://github.com/devcode-it/openstamanager.git synced 2025-06-05 22:09:38 +02:00

Revert "Revert "Merge branch '2.3.1' of https://github.com/devcode-it/openstamanager into 2.3.1""

This reverts commit 22b48fc225.
This commit is contained in:
Thomas Zilio
2017-12-20 14:05:14 +01:00
parent 22b48fc225
commit ecc95e63f9
32 changed files with 338 additions and 146 deletions

View File

@@ -206,6 +206,14 @@ gulp.task('chartjs', function () {
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/chartjs'));
});
gulp.task('viewerjs', function () {
gulp.src([
config.main.bowerDirectory + '/viewerjs/ViewerJS/**/*',
'!' + config.main.bowerDirectory + '/viewerjs/ViewerJS/example.local.css',
])
.pipe(gulp.dest(config.production + '/viewerjs'));
});
// Elaborazione e minificazione delle informazioni sull'internazionalizzazione
gulp.task('i18n', function () {
gulp.src([
@@ -308,9 +316,13 @@ gulp.task('bower', ['clean'], function () {
gulp.task('other', ['clean'], function () {
gulp.start('ckeditor');
gulp.start('colorpicker');
gulp.start('chartjs');
gulp.start('i18n');
gulp.start('viewerjs');
gulp.start('chartjs');
gulp.start('php-debugbar');
});
gulp.task('default', ['clean', 'bower']);