From f1d0b42d92bc8858bd0d8be717d769a6153e3542 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Wed, 16 Nov 2016 16:42:38 +0100 Subject: [PATCH] Make sure to install all deps with yarn Ref yarnpkg/yarn#761 --- scripts/install-dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/install-dependencies.sh b/scripts/install-dependencies.sh index c1c96f3..20e5c53 100755 --- a/scripts/install-dependencies.sh +++ b/scripts/install-dependencies.sh @@ -1,3 +1,3 @@ #!/usr/bin/env sh -[ -s "/home/node/src/yarn.lock" ] && yarn install || npm install +[ -s "/home/node/src/yarn.lock" ] && NODE_ENV=development yarn install || npm install