File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -580,17 +580,16 @@ export async function applyPackageOverrides(
580
580
if ( pm === 'pnpm' ) {
581
581
const version = await $$ `pnpm --version`
582
582
// avoid bug with peer dependency overrides in pnpm 10.0-10.1.0
583
- // TODO: change the override to 10.1.1 after it is released
584
583
if ( version === '10.0.0' || version === '10.1.0' ) {
585
584
console . warn (
586
- `detected pnpm@${ version } , changing pkg.packageManager and pkg.engines.pnpm to enforce use of pnpm@9.15.5 ` ,
585
+ `detected pnpm@${ version } , changing pkg.packageManager and pkg.engines.pnpm to enforce use of pnpm@10.2.0 ` ,
587
586
)
588
- // corepack reads this and uses pnpm 9.15.5 then
589
- pkg . packageManager = 'pnpm@9.15.5 '
587
+ // corepack reads this and uses pnpm 10.2.0 then
588
+ pkg . packageManager = 'pnpm@10.2.0 '
590
589
if ( ! pkg . engines ) {
591
590
pkg . engines = { }
592
591
}
593
- pkg . engines . pnpm = '9.15.5 '
592
+ pkg . engines . pnpm = '10.2.0 '
594
593
}
595
594
// if (!pkg.devDependencies) {
596
595
// pkg.devDependencies = {}
You can’t perform that action at this time.
0 commit comments