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

Miglioramento della gestione della libreria JS CKEditor

This commit is contained in:
Thomas Zilio
2017-09-22 14:37:18 +02:00
parent 60612585b1
commit 28a67ea4b7
5 changed files with 15 additions and 14 deletions

View File

@@ -180,14 +180,14 @@ gulp.task('srcFonts', function () {
gulp.task('ckeditor', function () {
gulp.src([
config.main.bowerDirectory + '/ckeditor/{adapters,lang,skins}/**/*',
config.main.bowerDirectory + '/ckeditor/{adapters,lang,skins,plugins}/**/*.{js,json,css,png}',
])
.pipe(gulp.dest(config.production + '/' + config.paths.js));
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/ckeditor'));
gulp.src([
config.main.bowerDirectory + '/ckeditor/{ckeditor,styles}.js',
config.main.bowerDirectory + '/ckeditor/*.{js,css}',
])
.pipe(gulp.dest(config.production + '/' + config.paths.js));
.pipe(gulp.dest(config.production + '/' + config.paths.js + '/ckeditor'));
});
gulp.task('colorpicker', function () {