mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-07-13 03:27:39 +03:00
update gulp and gulpfile
This commit is contained in:
parent
a1562e7145
commit
b244462fa5
19 changed files with 1570 additions and 1044 deletions
9
tasks/assets.js
Normal file
9
tasks/assets.js
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
/* RainLoop Webmail (c) RainLoop Team | Licensed under AGPL 3 */
|
||||
const gulp = require('gulp');
|
||||
const {config} = require('./config');
|
||||
|
||||
const assetsCopy = () =>
|
||||
gulp.src(config.paths.assets.src)
|
||||
.pipe(gulp.dest(config.paths.static));
|
||||
|
||||
exports.assets = gulp.series(assetsCopy);
|
||||
Loading…
Add table
Add a link
Reference in a new issue