snappymail/tasks/common.js

9 lines
253 B
JavaScript
Raw Permalink Normal View History

2022-09-01 02:15:45 +08:00
/* RainLoop Webmail (c) RainLoop Team | Licensed under MIT */
const del = require('del');
2019-06-29 22:16:09 +08:00
2019-07-05 03:09:27 +08:00
const { config } = require('./config');
2019-06-29 22:16:09 +08:00
exports.del = (dir) => del(dir);
2019-06-29 22:16:09 +08:00
exports.cleanStatic = () => del(config.paths.staticJS) && del(config.paths.staticCSS);