Skip to content

Instantly share code, notes, and snippets.

@LivingGhost
Created July 8, 2024 23:38
Show Gist options
  • Save LivingGhost/24d4d0cc6ffd9b7574e172284588be46 to your computer and use it in GitHub Desktop.
Save LivingGhost/24d4d0cc6ffd9b7574e172284588be46 to your computer and use it in GitHub Desktop.
"npm run clean"で特定のフォルダを削除したいとき (Node.js v12以降)
{
"scripts": {
"clean": "node -e 'fs.rmSync(`./dist`, {recursive: true, force: true})'",
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment