Skip to content

Commit

Permalink
fix: tryfix
Browse files Browse the repository at this point in the history
  • Loading branch information
Ganitzsh committed Nov 15, 2023
1 parent 52d8f73 commit 7f5d98e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions bootstrap.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 7f5d98e

Please sign in to comment.