diff --git a/bootstrap.mjs b/bootstrap.mjs index b29ba663f..156075a15 100644 --- a/bootstrap.mjs +++ b/bootstrap.mjs @@ -2,10 +2,13 @@ import { execSync } from 'child_process'; try { const __dirname = new URL('.', import.meta.url).pathname; - execSync('npm ci --omit=dev --no-audit --no-progress --prefer-offline', { - stdio: 'inherit', - cwd: __dirname, - }); + execSync( + 'npm install semantic-release --omit=dev --no-audit --no-progress --prefer-offline', + { + stdio: 'inherit', + cwd: __dirname, + }, + ); await import('./dist/index.js'); } catch (err) {