Skip to content

Commit 68656a4

Browse files
committed
more
1 parent d42de75 commit 68656a4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

release/core/publish/steps/generate-mirror-tarballs.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,13 @@ export async function generateMirrorTarballs(
6363
newContents = newContents.replace(new RegExp(from, 'g'), to);
6464
}
6565
for (const [from, to] of cautionReplace) {
66-
newContents = newContents.replace(new RegExp(from, 'g'), to);
66+
newContents = newContents.replace(new RegExp(`'${from}`, 'g'), `'${to}`);
67+
newContents = newContents.replace(new RegExp(`"${from}`, 'g'), `"${to}`);
6768
}
6869

70+
newContents = newContents.replace(new RegExp(`'@ember-data/'`, 'g'), `'@ember-data-mirror/'`);
71+
newContents = newContents.replace(new RegExp(`"@ember-data/"`, 'g'), `"@ember-data-mirror/"`);
72+
6973
await Bun.write(fullPath, newContents);
7074
}
7175

0 commit comments

Comments
 (0)