mirror of
https://github.com/Mastermindzh/dotfiles.git
synced 2024-11-22 23:04:10 +01:00
5 lines
180 B
Bash
5 lines
180 B
Bash
|
#!/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'
|