chore: split aliases

This commit is contained in:
2023-12-10 00:02:08 +01:00
parent 4308782feb
commit 39a0a5ea72
18 changed files with 237 additions and 169 deletions

4
bash/.aliases/node.sh Normal file
View File

@@ -0,0 +1,4 @@
#!/bin/bash
alias clean-node-modules='find . -name "node_modules" -type d -print0 |xargs -0 rm -r --'
alias organize-package-json='npx format-package -w && npx sort-package-json'