update gulp and gulpfile

This commit is contained in:
RainLoop Team 2019-06-29 17:16:09 +03:00
parent a1562e7145
commit b244462fa5
19 changed files with 1570 additions and 1044 deletions

9
tasks/assets.js Normal file
View 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);