mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-10 09:02:45 +08:00
8 lines
253 B
JavaScript
8 lines
253 B
JavaScript
/* RainLoop Webmail (c) RainLoop Team | Licensed under MIT */
|
|
const del = require('del');
|
|
|
|
const { config } = require('./config');
|
|
|
|
exports.del = (dir) => del(dir);
|
|
|
|
exports.cleanStatic = () => del(config.paths.staticJS) && del(config.paths.staticCSS);
|