Nop.Core_4.7/Presentation/Nop.Web/gulp/tasks/clean.js

8 lines
187 B
JavaScript

import { deleteAsync } from 'del';
const targetPath = './wwwroot/lib_npm/';
export default function clean(cb) {
return deleteAsync(targetPath + '**/*').then(() => {
cb()
})
};