lalph 0.2.9 → 0.2.10

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 CHANGED
@@ -151008,7 +151008,9 @@ Once you have completed your review, you should:
151008
151008
 
151009
151009
  ${options.gitFlow.reviewInstructions}
151010
151010
 
151011
- # Prevous instructions (only for context, do not repeat)
151011
+ **Everything should be done without interaction or asking for permission.**
151012
+
151013
+ # Previous instructions (only for context, do not repeat)
151012
151014
 
151013
151015
  ${options.prompt}`;
151014
151016
  const promptReviewCustom = (options) => `${options.prompt}
@@ -151584,7 +151586,10 @@ const GitFlowPR = succeed$2(GitFlow, GitFlow.of({
151584
151586
  - **DO NOT** commit any of the files in the \`.lalph\` directory.
151585
151587
  - You have full permission to push branches, create PRs or create git commits.`,
151586
151588
  reviewInstructions: `You are already on the PR branch with their changes.
151587
- After making any changes, commit and push them to the same pull request.`,
151589
+ After making any changes, commit and push them to the same pull request.
151590
+
151591
+ - **DO NOT** commit any of the files in the \`.lalph\` directory.
151592
+ - You have full permission to push branches, create PRs or create git commits.`,
151588
151593
  postWork: () => void_$1,
151589
151594
  autoMerge: fnUntraced(function* (options) {
151590
151595
  const prd = yield* Prd;
@@ -151613,7 +151618,10 @@ const GitFlowCommit = effect$1(GitFlow, gen(function* () {
151613
151618
  commitInstructions: () => `When you have completed your changes, **you must** commit them to the current local branch. Do not git push your changes or switch branches.
151614
151619
  - **DO NOT** commit any of the files in the \`.lalph\` directory.`,
151615
151620
  reviewInstructions: `You are already on the branch with their changes.
151616
- After making any changes, commit them to the same branch. Do not git push your changes or switch branches.`,
151621
+ After making any changes, commit them to the same branch. Do not git push your changes or switch branches.
151622
+
151623
+ - **DO NOT** commit any of the files in the \`.lalph\` directory.
151624
+ - You have full permission to create git commits.`,
151617
151625
  postWork: fnUntraced(function* ({ worktree, targetBranch, issueId }) {
151618
151626
  if (!targetBranch) return yield* logWarning("GitFlowCommit: No target branch specified, skipping postWork.");
151619
151627
  const prd = yield* Prd;
@@ -152224,7 +152232,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
152224
152232
 
152225
152233
  //#endregion
152226
152234
  //#region package.json
152227
- var version = "0.2.9";
152235
+ var version = "0.2.10";
152228
152236
 
152229
152237
  //#endregion
152230
152238
  //#region src/commands/projects/ls.ts
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "lalph",
3
3
  "type": "module",
4
- "version": "0.2.9",
4
+ "version": "0.2.10",
5
5
  "publishConfig": {
6
6
  "access": "public"
7
7
  },
package/src/GitFlow.ts CHANGED
@@ -74,7 +74,10 @@ export const GitFlowPR = Layer.succeed(
74
74
  - You have full permission to push branches, create PRs or create git commits.`,
75
75
 
76
76
  reviewInstructions: `You are already on the PR branch with their changes.
77
- After making any changes, commit and push them to the same pull request.`,
77
+ After making any changes, commit and push them to the same pull request.
78
+
79
+ - **DO NOT** commit any of the files in the \`.lalph\` directory.
80
+ - You have full permission to push branches, create PRs or create git commits.`,
78
81
 
79
82
  postWork: () => Effect.void,
80
83
  autoMerge: Effect.fnUntraced(function* (options) {
@@ -126,7 +129,10 @@ export const GitFlowCommit = Layer.effect(
126
129
  - **DO NOT** commit any of the files in the \`.lalph\` directory.`,
127
130
 
128
131
  reviewInstructions: `You are already on the branch with their changes.
129
- After making any changes, commit them to the same branch. Do not git push your changes or switch branches.`,
132
+ After making any changes, commit them to the same branch. Do not git push your changes or switch branches.
133
+
134
+ - **DO NOT** commit any of the files in the \`.lalph\` directory.
135
+ - You have full permission to create git commits.`,
130
136
 
131
137
  postWork: Effect.fnUntraced(function* ({
132
138
  worktree,
package/src/PromptGen.ts CHANGED
@@ -198,7 +198,9 @@ Once you have completed your review, you should:
198
198
 
199
199
  ${options.gitFlow.reviewInstructions}
200
200
 
201
- # Prevous instructions (only for context, do not repeat)
201
+ **Everything should be done without interaction or asking for permission.**
202
+
203
+ # Previous instructions (only for context, do not repeat)
202
204
 
203
205
  ${options.prompt}`
204
206