Delete files and directories using globs Similar to rimraf, but with a Promise API and support for multiple files and globbing. It also protects you against deleting the current working directory and above. Install import {deleteAsync} from 'del'; const deletedFilePaths = await deleteAsync(['temp/*.js', '!temp/unicorn.js']); const deletedDirectoryPaths = await deleteAsync(['temp', 'public']); cons