lalph 0.3.16 → 0.3.18
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 +4 -2
- package/package.json +1 -1
- package/src/GitFlow.ts +4 -1
package/dist/cli.mjs
CHANGED
|
@@ -152314,7 +152314,8 @@ const GitFlowCommit = effect$1(GitFlow, gen(function* () {
|
|
|
152314
152314
|
- Include \`References ${options.taskId}\` in each commit message.
|
|
152315
152315
|
- **DO NOT** commit any of the files in the \`.lalph\` directory.`,
|
|
152316
152316
|
reviewInstructions: `You are already on the branch with their changes.
|
|
152317
|
-
After making any changes, commit them to the same branch.
|
|
152317
|
+
After making any changes, **you have to commit them** to the same branch.
|
|
152318
|
+
But you **do not** need to git push your changes or switch branches.
|
|
152318
152319
|
|
|
152319
152320
|
- Include \`References {task id}\` in each commit message.
|
|
152320
152321
|
- **DO NOT** commit any of the files in the \`.lalph\` directory.
|
|
@@ -152324,6 +152325,7 @@ After making any changes, commit them to the same branch. Do not git push your c
|
|
|
152324
152325
|
const prd = yield* Prd;
|
|
152325
152326
|
const parsed = parseBranch(targetBranch);
|
|
152326
152327
|
yield* worktree.exec`git fetch ${parsed.remote}`;
|
|
152328
|
+
yield* worktree.exec`git restore --worktree .`;
|
|
152327
152329
|
if ((yield* worktree.exec`git rebase ${parsed.branchWithRemote}`) !== 0) {
|
|
152328
152330
|
yield* prd.flagUnmergable({ issueId });
|
|
152329
152331
|
return yield* new GitFlowError({ message: `Failed to rebase onto ${parsed.branchWithRemote}. Aborting task.` });
|
|
@@ -152866,7 +152868,7 @@ const commandSource = make$36("source").pipe(withDescription("Select the issue s
|
|
|
152866
152868
|
|
|
152867
152869
|
//#endregion
|
|
152868
152870
|
//#region package.json
|
|
152869
|
-
var version = "0.3.
|
|
152871
|
+
var version = "0.3.18";
|
|
152870
152872
|
|
|
152871
152873
|
//#endregion
|
|
152872
152874
|
//#region src/commands/projects/ls.ts
|
package/package.json
CHANGED
package/src/GitFlow.ts
CHANGED
|
@@ -130,7 +130,8 @@ export const GitFlowCommit = Layer.effect(
|
|
|
130
130
|
- **DO NOT** commit any of the files in the \`.lalph\` directory.`,
|
|
131
131
|
|
|
132
132
|
reviewInstructions: `You are already on the branch with their changes.
|
|
133
|
-
After making any changes, commit them to the same branch.
|
|
133
|
+
After making any changes, **you have to commit them** to the same branch.
|
|
134
|
+
But you **do not** need to git push your changes or switch branches.
|
|
134
135
|
|
|
135
136
|
- Include \`References {task id}\` in each commit message.
|
|
136
137
|
- **DO NOT** commit any of the files in the \`.lalph\` directory.
|
|
@@ -150,6 +151,8 @@ After making any changes, commit them to the same branch. Do not git push your c
|
|
|
150
151
|
|
|
151
152
|
const parsed = parseBranch(targetBranch)
|
|
152
153
|
yield* worktree.exec`git fetch ${parsed.remote}`
|
|
154
|
+
|
|
155
|
+
yield* worktree.exec`git restore --worktree .`
|
|
153
156
|
const rebaseResult =
|
|
154
157
|
yield* worktree.exec`git rebase ${parsed.branchWithRemote}`
|
|
155
158
|
if (rebaseResult !== 0) {
|