We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c061823 commit 972fd50Copy full SHA for 972fd50
1 file changed
packages/cli/src/migration/migrator.ts
@@ -810,7 +810,6 @@ export function rewriteStandaloneProject(
810
migratePnpmOverridesToWorkspaceYaml(projectPath, remainingPnpmOverrides);
811
}
812
813
- // Ensure .yarnrc.yml exists with nodeLinker for standalone yarn projects
814
if (packageManager === PackageManager.yarn) {
815
rewriteYarnrcYml(projectPath);
816
@@ -1121,7 +1120,6 @@ function rewriteYarnrcYml(projectPath: string): void {
1121
1120
1122
1123
editYamlFile(yarnrcYmlPath, (doc) => {
1124
- // Ensure nodeLinker is set to node-modules (yarn 4 defaults to PnP)
1125
if (!doc.has('nodeLinker')) {
1126
doc.set('nodeLinker', 'node-modules');
1127
0 commit comments