Skip to content

Instantly share code, notes, and snippets.

@omega-takai
Created February 12, 2024 02:10
Show Gist options
  • Save omega-takai/5c7590c440170907b19c6e0dcaf50231 to your computer and use it in GitHub Desktop.
Save omega-takai/5c7590c440170907b19c6e0dcaf50231 to your computer and use it in GitHub Desktop.
npm scriptsでファイルやフォルダを削除するときに、もうrimrafやdel-cliみたいなnpmモジュールをインストールしなくても、こうやって書けば大丈夫っぽい。
{
"scripts": {
"clean": "node -e \"fs.promises.rm('script.js', {force: true})\"",
"clean": "node -e \"fs.promises.rm('../dist', {recursive: true, force: true})\""
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment