Skip to content

Commit

Permalink
fix(updater): should install deps after analyze
Browse files Browse the repository at this point in the history
  • Loading branch information
deot committed Jan 9, 2024
1 parent 5194898 commit bafa63d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/updater/src/update.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export class Update {
const locals = Locals.impl();
const { cwd } = locals;
await fs.remove(`${cwd}/node_modules`);
await Shell.spawn('npx', ['pnpm', 'install', '--lockfile-only']);
await Shell.spawn('npx', ['pnpm', 'install']);
}
}

Expand Down

0 comments on commit bafa63d

Please sign in to comment.