Terminal goodies - Awesome π€©, but forgettable πΈ
I like the terminal but Iβm no π±βπ€ These things are so forgetable to me because I donβt use them quite often enough π
Open bash file in VS code.
code ~/.bashrc
Aliases are handy
alias prjctabrv='cd /c/source/project/path'
alias src='cd /c/source'
alias fixweb='rm -rf node_modules package-lock.json && npm i'
alias runweb='npm run start'
alias buildweb='npm run build -- --prod'