backlog.md 1.5.4 → 1.5.5
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 +8 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -149,6 +149,7 @@ When re-initializing an existing project, all current configuration values are p
|
|
|
149
149
|
|-------------|------------------------------------------------------|
|
|
150
150
|
| Kanban board | `backlog board` (interactive UI, press 'E' to edit in editor) |
|
|
151
151
|
| Export board | `backlog board export [file]` (exports Kanban board to markdown) |
|
|
152
|
+
| Export with version | `backlog board export --export-version "v1.0.0"` (includes version in export) |
|
|
152
153
|
|
|
153
154
|
### Web Interface
|
|
154
155
|
|
|
@@ -243,6 +244,13 @@ backlog board export project-status.md
|
|
|
243
244
|
|
|
244
245
|
# Force overwrite existing file
|
|
245
246
|
backlog board export --force
|
|
247
|
+
|
|
248
|
+
# Export to README.md with board markers
|
|
249
|
+
backlog board export --readme
|
|
250
|
+
|
|
251
|
+
# Include a custom version string in the export
|
|
252
|
+
backlog board export --export-version "v1.2.3"
|
|
253
|
+
backlog board export --readme --export-version "Release 2024.12.1-beta"
|
|
246
254
|
```
|
|
247
255
|
|
|
248
256
|
Perfect for sharing project status, creating reports, or storing snapshots in version control.
|
package/package.json
CHANGED
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "backlog.md",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.5",
|
|
4
4
|
"bin": {
|
|
5
5
|
"backlog": "cli.js"
|
|
6
6
|
},
|
|
7
7
|
"optionalDependencies": {
|
|
8
|
-
"backlog.md-linux-x64": "1.5.
|
|
9
|
-
"backlog.md-linux-arm64": "1.5.
|
|
10
|
-
"backlog.md-darwin-x64": "1.5.
|
|
11
|
-
"backlog.md-darwin-arm64": "1.5.
|
|
12
|
-
"backlog.md-windows-x64": "1.5.
|
|
8
|
+
"backlog.md-linux-x64": "1.5.5",
|
|
9
|
+
"backlog.md-linux-arm64": "1.5.5",
|
|
10
|
+
"backlog.md-darwin-x64": "1.5.5",
|
|
11
|
+
"backlog.md-darwin-arm64": "1.5.5",
|
|
12
|
+
"backlog.md-windows-x64": "1.5.5"
|
|
13
13
|
},
|
|
14
14
|
"scripts": {
|
|
15
15
|
"postuninstall": "node postuninstall.cjs"
|