Last active
December 7, 2021 11:52
-
-
Save horizon0514/e73a87acf5314c702bb2a314a1bfab2f to your computer and use it in GitHub Desktop.
Delete glob files use Node
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import del from del; | |
async function deleteFiles(patterns) { | |
return del(patterns); | |
} | |
// use example | |
// const pattern = [`packages/**/*.js`, `!packages/common/**/*.js`, '!packages/example/**/*.js']; | |
// deleteFiles(pattern); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment