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 } } }