@staff0rd/assist 0.172.2 → 0.172.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/index.js +2 -9
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,7 +6,7 @@ import { Command } from "commander";
|
|
|
6
6
|
// package.json
|
|
7
7
|
var package_default = {
|
|
8
8
|
name: "@staff0rd/assist",
|
|
9
|
-
version: "0.172.
|
|
9
|
+
version: "0.172.3",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -1014,14 +1014,7 @@ async function next(options2) {
|
|
|
1014
1014
|
console.log(chalk7.green("All backlog items complete."));
|
|
1015
1015
|
return;
|
|
1016
1016
|
}
|
|
1017
|
-
|
|
1018
|
-
if (todo.length === 1) {
|
|
1019
|
-
const only = todo[0];
|
|
1020
|
-
console.log(chalk7.bold(`Starting #${only.id}: ${only.name}`));
|
|
1021
|
-
id = String(only.id);
|
|
1022
|
-
} else {
|
|
1023
|
-
id = await selectItem(todo);
|
|
1024
|
-
}
|
|
1017
|
+
const id = await selectItem(todo);
|
|
1025
1018
|
const completed = await run(id, options2);
|
|
1026
1019
|
if (!completed) return;
|
|
1027
1020
|
}
|