lalph 0.3.16 → 0.3.17
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 +2 -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.
|
|
@@ -152866,7 +152867,7 @@ const commandSource = make$36("source").pipe(withDescription("Select the issue s
|
|
|
152866
152867
|
|
|
152867
152868
|
//#endregion
|
|
152868
152869
|
//#region package.json
|
|
152869
|
-
var version = "0.3.
|
|
152870
|
+
var version = "0.3.17";
|
|
152870
152871
|
|
|
152871
152872
|
//#endregion
|
|
152872
152873
|
//#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.
|