mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 09:02:45 +08:00
12 lines
355 B
JavaScript
12 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;
|