From 3788f0336372f5fa21f5bce50a1090c7539743e2 Mon Sep 17 00:00:00 2001 From: Michael Schramm Date: Wed, 3 Jun 2020 14:39:57 +0200 Subject: [PATCH] install nest globally for startup --- scripts/heroku/prebuild.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/heroku/prebuild.sh b/scripts/heroku/prebuild.sh index bff1c512..87e1ceaa 100755 --- a/scripts/heroku/prebuild.sh +++ b/scripts/heroku/prebuild.sh @@ -8,5 +8,6 @@ yarn --cwd ui install --frozen-lockfile echo "Install API" yarn --cwd api install --frozen-lockfile +yarn global install @nestjs/cli echo "FINISHED prebuild"