shipbench 0.1.0 → 0.2.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/dist/index.js +3 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -4810,7 +4810,7 @@ Visible order comes from \`config.json\`, the task files, and this partial index
|
|
|
4810
4810
|
- The Uncategorized column and the \`done_column\` both ignore \`layout\` entirely.
|
|
4811
4811
|
- The CLI and Board do not record \`layout[done_column]\`; any existing entry is removed on the next layout write.
|
|
4812
4812
|
|
|
4813
|
-
Do not read \`layout.json\` alone to determine board order. \`shipbench task list\` returns live tasks in canonical board order,
|
|
4813
|
+
Do not read \`layout.json\` alone to determine board order. \`shipbench task list --json\` returns live tasks in canonical board order, including each task's zero-based \`position\` within its column. Direct file readers must apply the rules above. Treat the index as machine-managed: do not hand-edit or hand-order it. You may gitignore it if ordering should stay machine-local, but Harbor and fresh clones will then fall back to deterministic \`created\`-descending order for unlisted tasks.
|
|
4814
4814
|
|
|
4815
4815
|
## Task files
|
|
4816
4816
|
|
|
@@ -4944,7 +4944,7 @@ Note that \`depends_on\` and the task's column are orthogonal. A column says whe
|
|
|
4944
4944
|
|
|
4945
4945
|
\`layout.json\` is a partial, machine-managed index, not the visible order. It can omit \`done_column\`, unlisted tasks, and whole columns; retain stale slugs until another layout write; or be absent or gitignored. Reading it alone can therefore give the wrong answer.
|
|
4946
4946
|
|
|
4947
|
-
\`shipbench task list\` reports live tasks in configured column order and visible within-column order
|
|
4947
|
+
\`shipbench task list --json\` reports live tasks in configured column order and visible within-column order, including each task's zero-based \`position\` within its column. When working directly with the plain files, combine task statuses with \`config.json\` and the ordering rules in \`README.md\`; do not use \`layout.json\` alone as the answer.
|
|
4948
4948
|
|
|
4949
4949
|
## Changing Board Order
|
|
4950
4950
|
|
|
@@ -6567,7 +6567,7 @@ async function runTui(options2) {
|
|
|
6567
6567
|
}
|
|
6568
6568
|
|
|
6569
6569
|
// src/cli.ts
|
|
6570
|
-
var VERSION = true ? "0.
|
|
6570
|
+
var VERSION = true ? "0.2.0" : "0.0.0-dev";
|
|
6571
6571
|
function commaList(value) {
|
|
6572
6572
|
return value.split(",").map((s) => s.trim()).filter(Boolean);
|
|
6573
6573
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "shipbench",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Git-native project management for solo developers. Your task board lives in your repository as Markdown.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"dependencies": {
|
|
34
34
|
"chokidar": "^5.0.0",
|
|
35
35
|
"commander": "^15.0.0",
|
|
36
|
-
"@shipbench/board": "0.
|
|
36
|
+
"@shipbench/board": "0.2.0"
|
|
37
37
|
},
|
|
38
38
|
"devDependencies": {
|
|
39
39
|
"@types/node": "^26.0.1",
|
|
40
40
|
"gray-matter": "^4.0.3",
|
|
41
41
|
"tsup": "^8.0.0",
|
|
42
42
|
"typescript": "^5.5.0",
|
|
43
|
-
"@shipbench/core": "0.
|
|
43
|
+
"@shipbench/core": "0.2.0"
|
|
44
44
|
},
|
|
45
45
|
"scripts": {
|
|
46
46
|
"build": "tsup",
|