From 5ad635ca9e652daec634ee5cffad0bdb2abdc8a3 Mon Sep 17 00:00:00 2001 From: DJ Mountney Date: Tue, 7 Feb 2017 14:33:32 -0800 Subject: [PATCH] Adding Yarn for use instead of npm See the following issue for details: https://gitlab.com/gitlab-org/gitlab-ce/issues/27613 But essentially we need to be able to lock down sub-dependancies --- scripts/install-node | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/install-node b/scripts/install-node index 302d84f..e915929 100755 --- a/scripts/install-node +++ b/scripts/install-node @@ -3,4 +3,6 @@ set -xeo pipefail curl --silent --location https://deb.nodesource.com/setup_7.x | bash - -apt-get install -y nodejs \ No newline at end of file +apt-get install -y nodejs + +curl -o- -L https://yarnpkg.com/install.sh | bash