mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
Small fixes
This commit is contained in:
parent
300cee0b6e
commit
3e9a7a55c6
15 changed files with 405 additions and 292 deletions
|
|
@ -29,7 +29,6 @@ var
|
|||
gulp = require('gulp'),
|
||||
concat = require('gulp-concat-util'),
|
||||
header = require('gulp-header'),
|
||||
footer = require('gulp-footer'),
|
||||
eol = require('gulp-eol'),
|
||||
rename = require('gulp-rename'),
|
||||
replace = require('gulp-replace'),
|
||||
|
|
@ -225,8 +224,8 @@ gulp.task('js:boot', function() {
|
|||
gulp.task('js:encrypt', function() {
|
||||
return gulp.src(cfg.paths.js.encrypt.src)
|
||||
.pipe(concat(cfg.paths.js.encrypt.name))
|
||||
.pipe(header(cfg.paths.js.encrypt.header || ''))
|
||||
.pipe(footer(cfg.paths.js.encrypt.footer || ''))
|
||||
.pipe(concat.header(cfg.paths.js.encrypt.header || ''))
|
||||
.pipe(concat.footer(cfg.paths.js.encrypt.footer || ''))
|
||||
.pipe(uglify(cfg.uglify))
|
||||
.pipe(eol('\n', true))
|
||||
.pipe(gulp.dest(cfg.paths.js.encrypt.dest))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue