“Usuń wszystkie foldery node_modules rekurencyjnie okna” Kod odpowiedzi

Usuń wszystkie foldery node_modules rekurencyjnie

//Find all Node Modules
find . -name 'node_modules' -type d -prune

//Remove Files
find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +
th3n00bc0d3r

Usuń wszystkie foldery node_modules rekurencyjnie okna

This is for windows  - type on the command line to list all node_modules folders:
For /d /r . %d in (node_modules) Do @IF EXIST "%d" echo %d

To delete all the listed folders:
For /d /r . %d in (node_modules) Do @IF EXIST "%d" del /Q "%d"

The /Q flag is "Quiet mode" - Does not ask if ok to delete on global wildcard
Cheerful Chicken

Usuń wszystkie foldery node_modules rekurencyjnie

Try https://github.com/voidcosmos/npkill

npx npkill
it will find all node_modules and let you remove them.
Xanthous Xenomorph

Odpowiedzi podobne do “Usuń wszystkie foldery node_modules rekurencyjnie okna”

Pytania podobne do “Usuń wszystkie foldery node_modules rekurencyjnie okna”

Więcej pokrewnych odpowiedzi na “Usuń wszystkie foldery node_modules rekurencyjnie okna” w JavaScript

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu