From d1d2455a6233b62e13a786151d5e00a01ae113de Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Sun, 6 Apr 2025 21:42:36 +0100 Subject: [PATCH] Added jenkins debugging --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index aacdb43..351dd9a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -22,7 +22,7 @@ pipeline { stage('Install dependencies') { steps { script { - sh 'npm install && npm install --save-dev vite wrangler' // Install project dependencies + sh 'npm install && npm install --save-dev' // Install project dependencies } } } @@ -30,7 +30,7 @@ pipeline { stage('Build') { steps { script { - sh 'npm run build' // Build the project + sh 'npm ls vite && npm run build' // Build the project } } }