mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-03 21:53:26 +01:00
abe4cfb739
This is an attempt to reduce the clutter of the sh/ directory by putting similar scripts in their own subdirectories.
17 lines
331 B
Bash
17 lines
331 B
Bash
#!/bin/sh
|
|
#
|
|
# Node lets us write JavaScript code outside of the browser.
|
|
#
|
|
# Yarn is the preferred dependency manager, however, some programs
|
|
# have npm hard-coded as a dependency, so we install that as well.
|
|
#
|
|
# https://wiki.archlinux.org/index.php/Node.js
|
|
|
|
set -xe
|
|
|
|
sudo pacman -S nodejs
|
|
|
|
sudo pacman -S npm
|
|
|
|
sudo pacman -S yarn
|