2023-12-10 00:02:08 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2024-06-11 22:59:12 +02:00
|
|
|
alias clean-node-modules='find . -not -path "*/.*" -name "node_modules" -type d -print0 | xargs -0 rm -rf'
|
2023-12-10 00:02:08 +01:00
|
|
|
alias organize-package-json='npx format-package -w && npx sort-package-json'
|