mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-26 17:16:07 +08:00
13 lines
355 B
JavaScript
13 lines
355 B
JavaScript
|
/* RainLoop Webmail (c) RainLoop Team | Licensed under AGPL 3 */
|
||
|
const gulp = require('gulp');
|
||
|
|
||
|
const { config } = require('./config');
|
||
|
const { cssBuild } = require('./css');
|
||
|
|
||
|
const watchCss = gulp.series(cssBuild, (cb) => {
|
||
|
gulp.watch(config.paths.less.main.watch, { interval: config.watchInterval }, cssBuild);
|
||
|
cb();
|
||
|
});
|
||
|
|
||
|
exports.watchCss = watchCss;
|