2018-09-06 21:29:07 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -e
|
2020-07-30 19:34:37 +00:00
|
|
|
curl -sL https://deb.nodesource.com/setup_14.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
|