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