dotfiles/node/node_utils.fish

12 lines
284 B
Fish
Raw Normal View History

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