backlog.md 1.1.3 → 1.1.4
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 +2 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -98,7 +98,8 @@ The web interface provides:
|
|
|
98
98
|
| Create sub task | `backlog task create -p 14 "Add Login with Google"`|
|
|
99
99
|
| Create draft | `backlog task create "Feature" --draft` |
|
|
100
100
|
| Create (all options) | `backlog task create "Feature" -d "Description" -a @sara -s "To Do" -l auth --priority high --ac "Must work" --notes "Initial setup done" --dep task-1 -p 14` |
|
|
101
|
-
| List tasks | `backlog task list [-s <status>] [-a <assignee>]`
|
|
101
|
+
| List tasks | `backlog task list [-s <status>] [-a <assignee>] [-p <parent>]` |
|
|
102
|
+
| List by parent | `backlog task list --parent 42` or `backlog task list -p task-42` |
|
|
102
103
|
| View detail | `backlog task 7` (interactive UI, press 'E' to edit in editor) |
|
|
103
104
|
| View (AI mode) | `backlog task 7 --plain` |
|
|
104
105
|
| Edit | `backlog task edit 7 -a @sara -l auth,backend` |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backlog.md",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.4",
|
|
4
4
|
"bin": {
|
|
5
5
|
"backlog": "cli.js"
|
|
6
6
|
},
|
|
@@ -8,11 +8,11 @@
|
|
|
8
8
|
"blessed": "npm:neo-neo-bblessed@1.0.3"
|
|
9
9
|
},
|
|
10
10
|
"optionalDependencies": {
|
|
11
|
-
"backlog.md-linux-x64": "1.1.
|
|
12
|
-
"backlog.md-linux-arm64": "1.1.
|
|
13
|
-
"backlog.md-darwin-x64": "1.1.
|
|
14
|
-
"backlog.md-darwin-arm64": "1.1.
|
|
15
|
-
"backlog.md-windows-x64": "1.1.
|
|
11
|
+
"backlog.md-linux-x64": "1.1.4",
|
|
12
|
+
"backlog.md-linux-arm64": "1.1.4",
|
|
13
|
+
"backlog.md-darwin-x64": "1.1.4",
|
|
14
|
+
"backlog.md-darwin-arm64": "1.1.4",
|
|
15
|
+
"backlog.md-windows-x64": "1.1.4"
|
|
16
16
|
},
|
|
17
17
|
"scripts": {
|
|
18
18
|
"postuninstall": "node postuninstall.cjs"
|