@fern-api/replay 0.6.1 → 0.6.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +2 -2
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -15206,12 +15206,12 @@ CLI Version: ${options.cliVersion}`;
|
|
|
15206
15206
|
await this.git.exec(["commit", "-m", fullMessage]);
|
|
15207
15207
|
return (await this.git.exec(["rev-parse", "HEAD"])).trim();
|
|
15208
15208
|
}
|
|
15209
|
-
async commitReplay(
|
|
15209
|
+
async commitReplay(_patchCount, patches) {
|
|
15210
15210
|
await this.stageAll();
|
|
15211
15211
|
if (!await this.hasStagedChanges()) {
|
|
15212
15212
|
return (await this.git.exec(["rev-parse", "HEAD"])).trim();
|
|
15213
15213
|
}
|
|
15214
|
-
let fullMessage = `[fern-replay] Applied
|
|
15214
|
+
let fullMessage = `[fern-replay] Applied customizations`;
|
|
15215
15215
|
if (patches && patches.length > 0) {
|
|
15216
15216
|
fullMessage += "\n\nPatches replayed:";
|
|
15217
15217
|
for (const patch of patches) {
|