houdini/script/build/debian/node.sh

8 lines
297 B
Bash
Raw Normal View History

2018-09-06 21:29:07 +00:00
#!/usr/bin/env bash
set -e
2019-11-05 21:37:47 +00:00
curl -sL https://deb.nodesource.com/setup_13.x | bash -
2019-11-05 21:51:46 +00:00
curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
apt-get update -qq && apt-get install -y nodejs yarn