使っていないnode_modulesを削除して容量削減したいとき用のメモ
任意のディレクトリ以下のnode_modulesを見つける
$ find . -name 'node_modules' -type d -prune
あとは、削除するなりzipに固めるなりお好きに
#削除する
$ find . -name 'node_modules' -type d -prune | awk '{print "rm -rf", $0}' | sh
Go to list of users who liked
More than 1 year has passed since last update.
使っていないnode_modulesを削除して容量削減したいとき用のメモ
任意のディレクトリ以下のnode_modulesを見つける
$ find . -name 'node_modules' -type d -prune
あとは、削除するなりzipに固めるなりお好きに
#削除する
$ find . -name 'node_modules' -type d -prune | awk '{print "rm -rf", $0}' | sh
Register as a new user and use Qiita more conveniently
Go to list of users who liked