diff --git a/src/makePatch.ts b/src/makePatch.ts index a51419b2..ec67b2bb 100644 --- a/src/makePatch.ts +++ b/src/makePatch.ts @@ -115,7 +115,7 @@ export function makePatch({ ;[".npmrc", ".yarnrc"].forEach((rcFile) => { const rcPath = join(appPath, rcFile) if (existsSync(rcPath)) { - copySync(rcPath, join(tmpRepo.name, rcFile)) + copySync(rcPath, join(tmpRepo.name, rcFile), { dereference: true }) } })