From 7f5d98e65968eae5887c4907b26b5c45f23140a7 Mon Sep 17 00:00:00 2001 From: Julien Ganichot Date: Wed, 15 Nov 2023 10:57:46 +0100 Subject: [PATCH] fix: tryfix --- bootstrap.mjs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/bootstrap.mjs b/bootstrap.mjs index 6d0daa44a..93a697993 100644 --- a/bootstrap.mjs +++ b/bootstrap.mjs @@ -2,9 +2,12 @@ import { execSync } from 'child_process'; try { // Install dependencies - execSync('npm ci --omit=dev --no-audit --no-progress --prefer-offline', { - stdio: 'inherit', - }); + execSync( + 'npm install semantic-release @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/exec @semantic-release/git @semantic-release/github @semantic-release/npm @semantic-release/release-notes-generator semantic-release', + { + stdio: 'inherit', + }, + ); await import('./dist/index.js'); } catch (error) {