Marley Rae
52a8da2336
Note to self - maybe consider testing things as you write them instead of just making one thousand edits and then moving on.
11 lines
275 B
Fish
11 lines
275 B
Fish
#!/usr/bin/env fish
|
|
|
|
source "$DOT/script/utils.fish"
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
function npm_install -a msg pkg
|
|
execute \
|
|
"source $DOT/node/path.config.fish && npm install --global --silent $pkg" \
|
|
"$msg"
|
|
end
|