#!/usr/bin/env bash # Setup Node install global packages # Requires: asdf and asdf-nodejs debug=${1:-false} # Load help lib if not already loaded. if [ -z ${libloaded+x} ]; then source ./lib.sh fi; # Check if asdf is installed. if hash asdf 2>/dev/null; then botintro "Installing Node global packages." # Create dirs and set current user as owner (prevent sudo issues) action "Creating Node directories" sudo mkdir "/usr/local/lib/node_modules" sudo chown -R $(whoami) "/usr/local/lib/node_modules" # Update npm for LTS. # note: node is installed by asdf from .tool-versions action "Updating npm." npm install npm -g # Install global Node packages. action "Installing Node global packages." packages=( create-react-app caniuse-cmd dependency-cruiser doctoc eslint fast-folder-size git-open git-recent gzip-size-cli http-server imageoptim-cli is-up-cli lighthouse npm-check npm-home npm-name-cli pageres-cli prettier remote-share-cli serve source-map-explorer speed-test stylelint stylelint-config-standard surge svgo viewport-list-cli @vue/cli ) for package in ${packages[@]}; do npm install --global $package done # fin. else echo "WARNING: asdf not found." fi;