-
-
Save johnrees/d63980817992053d145c205f359adbd3 to your computer and use it in GitHub Desktop.
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
// by @noffle | |
autoinstall () { | |
local MODULES=$(cat $1 | grep "require('.*')" | sed "s/.*require('\(.*\)')/\1/" | grep -v '^\.' | tr '\n' ' ') | |
shift | |
shift | |
npm install $MODULES $@ | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment