Remove old files

Signed-off-by: Severin Kaderli <severin@kaderli.dev>
This commit is contained in:
Severin Kaderli 2021-10-31 19:48:18 +01:00
parent f6ff98f742
commit 70fd8b3a20
Signed by: severinkaderli
GPG key ID: F419F8835B72F0C4
3 changed files with 0 additions and 39 deletions

View file

@ -1,24 +0,0 @@
#!/usr/bin/env bash
#
# SCRIPT NAME:
# npm.sh
#
# AUTHOR:
# Severin Kaderli <severin@kaderli.dev>
#
# DESCRIPTION:
# Installs global npm packages
CONFIG_NPM_PACKAGES=(
"@vue/cli"
"gatsby-cli"
)
output::section "NPM"
if output::prompt "Do you want to install global npm packages?"; then
output::log "Installing ${#CONFIG_NPM_PACKAGES[@]} packages"
output::list "${CONFIG_NPM_PACKAGES[@]}"
npm i -g "${CONFIG_NPM_PACKAGES[@]}" |& output::debug
output::success "Packages successfully installed"
fi