Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

clean.js

import { deleteAsync } from 'del';
const targetPath = './wwwroot/lib_npm/';

export default function clean(cb) {
  return deleteAsync(targetPath + '**/*').then(() => {
    cb()
  })
};