@unbrained/pm-web 2026.7.18 → 2026.7.22
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 +9 -0
- package/dist/index.js +1 -1
- package/manifest.json +1 -1
- package/package.json +7 -4
package/README.md
CHANGED
|
@@ -238,3 +238,12 @@ cookie). The pure generator lives in `src/ical.ts` and is unit-tested.
|
|
|
238
238
|
Press `?` for the in-app shortcuts overlay. Highlights: `Ctrl/⌘+K` global
|
|
239
239
|
search, `/` focus search, `n`/`c` new item, `t` cycle theme, `a` activity,
|
|
240
240
|
`g i` items, `g g` graph, `g s` search, `g c` calendar, `Esc` close modal.
|
|
241
|
+
|
|
242
|
+
## Multi-agent merge safety
|
|
243
|
+
|
|
244
|
+
This repo tracks its project management in `.agents/pm/` and ships a committed `.gitattributes`
|
|
245
|
+
that maps those tracker artifacts to pm-cli's field-aware Git merge drivers, so concurrent-branch
|
|
246
|
+
tracker edits merge cleanly instead of hard-conflicting. The driver **definitions** live in
|
|
247
|
+
per-clone Git config; `npm install` / `npm ci` wires them automatically via the `prepare` script
|
|
248
|
+
(`pm merge install`). To (re)run manually: `npm run merge:install`. After merging a branch that
|
|
249
|
+
touched `.agents/pm/`, run `pm history-repair --all` to reconcile history verification.
|
package/dist/index.js
CHANGED
|
@@ -176,7 +176,7 @@ function processAlive(pid) {
|
|
|
176
176
|
}
|
|
177
177
|
export default defineExtension({
|
|
178
178
|
name: "pm-web",
|
|
179
|
-
version: "2026.7.
|
|
179
|
+
version: "2026.7.22",
|
|
180
180
|
activate(api) {
|
|
181
181
|
// -----------------------------------------------------------------------
|
|
182
182
|
// Command: pm web [--port <port>] [--detach]
|
package/manifest.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pm-web",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.22",
|
|
4
4
|
"description": "Full web UI for pm-cli — browse, create, update, search and manage pm projects in the browser. Self-hosted via Docker or Node.js.",
|
|
5
5
|
"author": "@unbraind",
|
|
6
6
|
"entry": "./dist/index.js",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unbrained/pm-web",
|
|
3
|
-
"version": "2026.7.
|
|
3
|
+
"version": "2026.7.22",
|
|
4
4
|
"description": "Full web UI for pm-cli — browse, create, update, search and manage pm projects in the browser. Self-hosted via Docker or Node.js.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"files": [
|
|
@@ -34,7 +34,9 @@
|
|
|
34
34
|
"prepack": "npm run build",
|
|
35
35
|
"build:test": "tsc -p tsconfig.test.json",
|
|
36
36
|
"test": "npm run build:server && npm run build:test && node --test dist-test/*.js",
|
|
37
|
-
"prepublishOnly": "npm run release:check"
|
|
37
|
+
"prepublishOnly": "npm run release:check",
|
|
38
|
+
"prepare": "if command -v pm >/dev/null 2>&1; then pm merge install; fi",
|
|
39
|
+
"merge:install": "pm merge install"
|
|
38
40
|
},
|
|
39
41
|
"dependencies": {
|
|
40
42
|
"@unbrained/pm-cli": "^2026.7.15",
|
|
@@ -53,10 +55,11 @@
|
|
|
53
55
|
"@types/jsonwebtoken": "^9.0.9",
|
|
54
56
|
"@types/node": "^26.1.1",
|
|
55
57
|
"@types/pg": "^8.11.11",
|
|
56
|
-
"@types/uuid": "^
|
|
58
|
+
"@types/uuid": "^11.0.0",
|
|
57
59
|
"pm-changelog": "^2026.7.12",
|
|
58
60
|
"tsx": "^4.23.0",
|
|
59
|
-
"typescript": "^7.0.2"
|
|
61
|
+
"typescript": "^7.0.2",
|
|
62
|
+
"@unbrained/pm-cli": "^2026.7.21"
|
|
60
63
|
},
|
|
61
64
|
"repository": {
|
|
62
65
|
"type": "git",
|