lalph 0.2.0 → 0.2.1
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 -1
- package/package.json +1 -1
- package/src/commands/projects/ls.ts +1 -0
package/dist/cli.mjs
CHANGED
|
@@ -151548,7 +151548,7 @@ const commandSource = make$35("source").pipe(withDescription("Select the issue s
|
|
|
151548
151548
|
|
|
151549
151549
|
//#endregion
|
|
151550
151550
|
//#region package.json
|
|
151551
|
-
var version = "0.2.
|
|
151551
|
+
var version = "0.2.1";
|
|
151552
151552
|
|
|
151553
151553
|
//#endregion
|
|
151554
151554
|
//#region src/commands/projects/ls.ts
|
|
@@ -151560,6 +151560,7 @@ const commandProjectsLs = make$35("ls").pipe(withDescription("List all configure
|
|
|
151560
151560
|
const projects = yield* getAllProjects;
|
|
151561
151561
|
for (const project of projects) {
|
|
151562
151562
|
console.log(`Project: ${project.id}`);
|
|
151563
|
+
console.log(` Enabled: ${project.enabled ? "Yes" : "No"}`);
|
|
151563
151564
|
yield* source.info(project.id);
|
|
151564
151565
|
console.log(` Concurrency: ${project.concurrency}`);
|
|
151565
151566
|
if (isSome(project.targetBranch)) console.log(` Target Branch: ${project.targetBranch.value}`);
|
package/package.json
CHANGED
|
@@ -18,6 +18,7 @@ export const commandProjectsLs = Command.make("ls").pipe(
|
|
|
18
18
|
|
|
19
19
|
for (const project of projects) {
|
|
20
20
|
console.log(`Project: ${project.id}`)
|
|
21
|
+
console.log(` Enabled: ${project.enabled ? "Yes" : "No"}`)
|
|
21
22
|
yield* source.info(project.id)
|
|
22
23
|
console.log(` Concurrency: ${project.concurrency}`)
|
|
23
24
|
if (Option.isSome(project.targetBranch)) {
|