lalph 0.3.2 → 0.3.3
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 +2 -2
- package/package.json +1 -1
- package/src/Projects.ts +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -151591,7 +151591,7 @@ const addOrUpdateProject = fnUntraced(function* (existing) {
|
|
|
151591
151591
|
title: "Commit",
|
|
151592
151592
|
description: "Tasks are committed directly to the target branch",
|
|
151593
151593
|
value: "commit",
|
|
151594
|
-
selected: existing ? existing.gitFlow === "
|
|
151594
|
+
selected: existing ? existing.gitFlow === "commit" : false
|
|
151595
151595
|
}]
|
|
151596
151596
|
});
|
|
151597
151597
|
const reviewAgent = yield* toggle({
|
|
@@ -152510,7 +152510,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
152510
152510
|
|
|
152511
152511
|
//#endregion
|
|
152512
152512
|
//#region package.json
|
|
152513
|
-
var version = "0.3.
|
|
152513
|
+
var version = "0.3.3";
|
|
152514
152514
|
|
|
152515
152515
|
//#endregion
|
|
152516
152516
|
//#region src/commands/projects/ls.ts
|
package/package.json
CHANGED
package/src/Projects.ts
CHANGED
|
@@ -188,7 +188,7 @@ export const addOrUpdateProject = Effect.fnUntraced(function* (
|
|
|
188
188
|
title: "Commit",
|
|
189
189
|
description: "Tasks are committed directly to the target branch",
|
|
190
190
|
value: "commit",
|
|
191
|
-
selected: existing ? existing.gitFlow === "
|
|
191
|
+
selected: existing ? existing.gitFlow === "commit" : false,
|
|
192
192
|
},
|
|
193
193
|
] as const,
|
|
194
194
|
})
|