Skip to content

Instantly share code, notes, and snippets.

@mikeumus
Last active December 20, 2017 17:37
Show Gist options
  • Save mikeumus/79a85a97f85321bc13c18aa259b01ca7 to your computer and use it in GitHub Desktop.
Save mikeumus/79a85a97f85321bc13c18aa259b01ca7 to your computer and use it in GitHub Desktop.

Revisions

  1. mikeumus revised this gist Dec 20, 2017. No changes.
  2. mikeumus revised this gist Dec 20, 2017. No changes.
  3. mikeumus created this gist Dec 20, 2017.
    17 changes: 17 additions & 0 deletions .bashrc
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,17 @@
    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
    }