Skip to content

Commit 8a9de42

Browse files
committed
fix sync
1 parent d75b581 commit 8a9de42

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/tools/src/sync-remote-deps.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -667,7 +667,7 @@ export async function syncRemote() {
667667
semver = await import('semver');
668668
} catch {
669669
log('Dependencies not found, running pnpm install...');
670-
execCommand('pnpm install', rootDir);
670+
execCommand('pnpm install --no-frozen-lockfile', rootDir);
671671
log('Retrying imports...');
672672
const yaml = await import('@std/yaml');
673673
parseYaml = yaml.parse;
@@ -711,7 +711,7 @@ export async function syncRemote() {
711711

712712
log('✓ pnpm-workspace.yaml updated successfully!');
713713

714-
execCommand('pnpm install', rootDir);
714+
execCommand('pnpm install --no-frozen-lockfile', rootDir);
715715

716716
// Merge package.json exports
717717
log('Merging package.json exports...');

0 commit comments

Comments
 (0)