#!/usr/bin/env bash # @file Volta initialization # @brief This script initializes Volta and ensures the latest version of node and yarn are installed export VOLTA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}/volta" export PATH="$VOLTA_HOME/bin:$PATH" if command -v volta > /dev/null; then logg info 'Running volta setup' volta setup logg info 'Installing latest version of Node.js via Volta' volta install node@latest logg info 'Installing latest version of Yarn via Volta' volta install yarn@latest else logg info 'Volta is not installed' fi