mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 22:17:03 +03:00
drop sieve parser from sievescripts branch
This commit is contained in:
parent
2024088ea0
commit
ca91a6e408
18 changed files with 1 additions and 2138 deletions
13
tasks/js.js
13
tasks/js.js
|
|
@ -46,17 +46,6 @@ const jsLibs = () => {
|
|||
.pipe(gulp.dest(config.paths.staticJS));
|
||||
};
|
||||
|
||||
// sieve
|
||||
const jsSieve = () => {
|
||||
const src = config.paths.js.sieve.src;
|
||||
return gulp
|
||||
.src(src)
|
||||
.pipe(expect.real({ errorOnFailure: true }, src))
|
||||
.pipe(concat(config.paths.js.sieve.name, { separator: '\n\n' }))
|
||||
.pipe(eol('\n', true))
|
||||
.pipe(gulp.dest(config.paths.staticJS));
|
||||
};
|
||||
|
||||
// app
|
||||
const jsApp = () =>
|
||||
gulp
|
||||
|
|
@ -125,7 +114,7 @@ const jsLint = () =>
|
|||
.pipe(eslint.failAfterError());
|
||||
|
||||
const jsState1 = gulp.series(jsLint);
|
||||
const jsState3 = gulp.parallel(jsBoot, jsServiceWorker, jsLibs, jsSieve, jsApp, jsAdmin);
|
||||
const jsState3 = gulp.parallel(jsBoot, jsServiceWorker, jsLibs, jsApp, jsAdmin);
|
||||
const jsState2 = gulp.series(jsClean, webpack, jsState3, jsMin);
|
||||
|
||||
exports.jsLint = jsLint;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue