lalph 0.1.105 → 0.1.106
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.mjs +3 -2
- package/package.json +1 -1
- package/src/GitFlow.ts +1 -0
- package/src/Prd.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -149514,7 +149514,7 @@ var Prd = class extends Service()("lalph/Prd", { make: gen(function* () {
|
|
|
149514
149514
|
state: "todo"
|
|
149515
149515
|
});
|
|
149516
149516
|
}, syncSemaphore.withPermit);
|
|
149517
|
-
const mergeConflictInstruction = "
|
|
149517
|
+
const mergeConflictInstruction = "A previous attempt at this task resulted in merge conflicts. Please try implementing the task again.";
|
|
149518
149518
|
const flagUnmergable = fnUntraced(function* (options) {
|
|
149519
149519
|
const issue = (yield* getCurrentIssues).find((entry) => entry.id === options.issueId);
|
|
149520
149520
|
if (!issue) return;
|
|
@@ -149746,6 +149746,7 @@ After making any changes, commit and push them to the same pull request.`,
|
|
|
149746
149746
|
if (isSome(prState) && prState.value.state === "MERGED") return;
|
|
149747
149747
|
yield* log$1("Flagging unmergable PR");
|
|
149748
149748
|
yield* prd.flagUnmergable({ issueId: options.issueId });
|
|
149749
|
+
yield* worktree.exec`gh pr close -d`;
|
|
149749
149750
|
})
|
|
149750
149751
|
}));
|
|
149751
149752
|
const GitFlowCommit = effect$1(GitFlow, gen(function* () {
|
|
@@ -150204,7 +150205,7 @@ const commandSource = make$34("source").pipe(withDescription("Select the issue s
|
|
|
150204
150205
|
|
|
150205
150206
|
//#endregion
|
|
150206
150207
|
//#region package.json
|
|
150207
|
-
var version = "0.1.
|
|
150208
|
+
var version = "0.1.106";
|
|
150208
150209
|
|
|
150209
150210
|
//#endregion
|
|
150210
150211
|
//#region src/Tracing.ts
|
package/package.json
CHANGED
package/src/GitFlow.ts
CHANGED
package/src/Prd.ts
CHANGED
|
@@ -75,7 +75,7 @@ export class Prd extends ServiceMap.Service<
|
|
|
75
75
|
}, syncSemaphore.withPermit)
|
|
76
76
|
|
|
77
77
|
const mergeConflictInstruction =
|
|
78
|
-
"
|
|
78
|
+
"A previous attempt at this task resulted in merge conflicts. Please try implementing the task again."
|
|
79
79
|
|
|
80
80
|
const flagUnmergable = Effect.fnUntraced(function* (options: {
|
|
81
81
|
readonly issueId: string
|