We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d75b581 commit 8a9de42Copy full SHA for 8a9de42
1 file changed
packages/tools/src/sync-remote-deps.ts
@@ -667,7 +667,7 @@ export async function syncRemote() {
667
semver = await import('semver');
668
} catch {
669
log('Dependencies not found, running pnpm install...');
670
- execCommand('pnpm install', rootDir);
+ execCommand('pnpm install --no-frozen-lockfile', rootDir);
671
log('Retrying imports...');
672
const yaml = await import('@std/yaml');
673
parseYaml = yaml.parse;
@@ -711,7 +711,7 @@ export async function syncRemote() {
711
712
log('✓ pnpm-workspace.yaml updated successfully!');
713
714
715
716
// Merge package.json exports
717
log('Merging package.json exports...');
0 commit comments