Created
January 3, 2015 13:23
-
-
Save FGRibreau/de20c7201bd1f34e30e6 to your computer and use it in GitHub Desktop.
npm scripts and zsh extended globbing - http://blog.fgribreau.com/2015/01/npm-scripts-and-zsh-extended-globbing.html
This file contains hidden or 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
$ cat package.json | grep "test" | |
"test": "zsh -c 'setopt extended_glob;mocha -t 5000 -R spec **/*.test.js~node_modules/*; zsh -i'", | |
$ npm test | |
> zsh -c 'setopt extended_glob;mocha -t 5000 -R spec **/*.test.js~node_modules/*; zsh -i' | |
(... tests start ...) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment