mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-12-22 21:19:11 +01:00
5 lines
197 B
Bash
5 lines
197 B
Bash
#!/bin/bash
|
|
|
|
alias clean-node-modules='find . -not -path "*/.*" -name "node_modules" -type d -print0 | xargs -0 rm -rf'
|
|
alias organize-package-json='npx format-package -w && npx sort-package-json'
|