mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-12-04 22:20:38 +01:00
17 lines
316 B
Plaintext
17 lines
316 B
Plaintext
|
#!/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
|
||
|
|
||
|
pacman -S nodejs
|
||
|
|
||
|
pacman -S npm
|
||
|
|
||
|
pacman -S yarn
|