dotfiles/node/node_utils.fish

12 lines
275 B
Fish
Raw Normal View History

2024-01-29 17:26:52 -08:00
#!/usr/bin/env fish
source "$DOT/script/utils.fish"
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
function npm_install -a msg pkg
2024-01-29 17:26:52 -08:00
execute \
"source $DOT/node/path.config.fish && npm install --global --silent $pkg" \
"$msg"
end