Last active
December 20, 2017 17:37
-
-
Save mikeumus/79a85a97f85321bc13c18aa259b01ca7 to your computer and use it in GitHub Desktop.
Mikeumus' .bashrc scripts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function gitRe() { | |
git st | |
git co develop | |
git pl origin develop | |
} | |
# Assumes Jest | |
# https://facebook.github.io/jest | |
function deJ() { | |
node --debug-brk ./node_modules/bin/jest.js -i --watch | |
} | |
# Requires NPM package "ttab" | |
# https://www.npmjs.com/package/ttab | |
function nodeD() { | |
ttab 'sleep 7s; node debug ::5858' && deJ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment