hippie/gulp/tasks/clean.mjs
Stephan Hagedorn da075e5beb require to import
exports are not working
2022-08-11 08:41:39 +02:00

8 lines
No EOL
204 B
JavaScript

import config from '../config.js';
import { deleteAsync } from 'del';
// Clean output folders
export function clean() {
return deleteAsync([config.dev + '**', config.rep + '**', config.dpl + '**']);
}