From a8603a912146bbe7afa50b564c3bec25448e56d2 Mon Sep 17 00:00:00 2001 From: Taylor Christie Date: Tue, 9 Apr 2019 11:06:52 -0600 Subject: [PATCH] ensure types are being installed --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0ab0ddb..077cc49 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,7 +11,7 @@ podTemplate(label: label, inheritFrom: 'base', , containers: [ } stage('Install Dependencies') { container('base') { - sh "npm ci --only=production" + sh "npm install" sh "npm install -g typescript" } }