chore(fish): rename files to match their function names

This commit is contained in:
Stefan Imhoff
2023-01-01 18:58:10 +01:00
parent af59b87e26
commit c8e45d2653
4 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
function deleteNodeModules --description "Delete all node_modules folders in a folder and subfolders"
find . -name "node_modules" -type d -exec rm -rf '{}' +
end