You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug npx npkill -y --no-check-update --exclude "node_modules" misses all node_modules folders deeply nested in the current working directory. npx npkill -y --no-check-update --exclude "./node_modules" has the same issue as well.
Expected behavior
It should find all nested node_modules, and exclude only the one node_modules folder located in the current directory.
Alternative that works correctly: npx npkill -y --no-check-update --exclude "$(pwd)/node_modules" (passing the absolute path works).
OS: MacOS Sequoia 15.2
npkill version 0.12.2
The text was updated successfully, but these errors were encountered:
Describe the bug
npx npkill -y --no-check-update --exclude "node_modules"
misses allnode_modules
folders deeply nested in the current working directory.npx npkill -y --no-check-update --exclude "./node_modules"
has the same issue as well.Expected behavior
It should find all nested
node_modules
, and exclude only the onenode_modules
folder located in the current directory.Alternative that works correctly:
npx npkill -y --no-check-update --exclude "$(pwd)/node_modules"
(passing the absolute path works).The text was updated successfully, but these errors were encountered: