@staff0rd/assist 0.74.0 → 0.75.0
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/README.md +1 -1
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ After installation, the `assist` command will be available globally.
|
|
|
54
54
|
- `assist prs list-comments` - List all comments on the current branch's pull request
|
|
55
55
|
- `assist prs fixed <comment-id> <sha>` - Reply with commit link and resolve thread
|
|
56
56
|
- `assist prs wontfix <comment-id> <reason>` - Reply with reason and resolve thread
|
|
57
|
-
- `assist backlog` -
|
|
57
|
+
- `assist backlog` - Start the backlog web UI (same as `backlog web`)
|
|
58
58
|
- `assist backlog init` - Create an empty assist.backlog.yml
|
|
59
59
|
- `assist backlog list [--status <type>] [-v]` - List all backlog items with status icons
|
|
60
60
|
- `assist backlog add` - Add a new backlog item interactively
|
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.
|
|
9
|
+
version: "0.75.0",
|
|
10
10
|
type: "module",
|
|
11
11
|
main: "dist/index.js",
|
|
12
12
|
bin: {
|
|
@@ -2255,7 +2255,7 @@ async function web(options2) {
|
|
|
2255
2255
|
|
|
2256
2256
|
// src/commands/registerBacklog.ts
|
|
2257
2257
|
function registerBacklog(program2) {
|
|
2258
|
-
const backlogCommand = program2.command("backlog").description("Manage a backlog of work items").action(
|
|
2258
|
+
const backlogCommand = program2.command("backlog").description("Manage a backlog of work items").action(() => web({ port: "3000" }));
|
|
2259
2259
|
backlogCommand.command("init").description("Create an empty assist.backlog.yml").action(init6);
|
|
2260
2260
|
backlogCommand.command("list").description("List all backlog items").option("--status <type>", "Filter by status (todo, in-progress, done)").option("-v, --verbose", "Show all item details").action(list2);
|
|
2261
2261
|
backlogCommand.command("add").description("Add a new backlog item").action(add);
|