@sienklogic/plan-build-run 2.27.1 → 2.28.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/CHANGELOG.md +14 -0
- package/dashboard/bin/cli.js +3 -3
- package/dashboard/package.json +8 -5
- package/dashboard/public/css/layout.css +470 -252
- package/dashboard/public/css/tokens.css +67 -61
- package/dashboard/public/js/sse-client.js +52 -82
- package/dashboard/public/js/theme-toggle.js +19 -14
- package/dashboard/src/components/Layout.tsx +93 -0
- package/dashboard/src/global.d.ts +10 -0
- package/dashboard/src/index.tsx +132 -0
- package/dashboard/src/middleware/current-phase.ts +25 -0
- package/dashboard/src/routes/index.routes.tsx +36 -0
- package/dashboard/src/services/phase.service.js +6 -2
- package/dashboard/src/services/sse.service.ts +34 -0
- package/dashboard/src/services/watcher.service.ts +35 -0
- package/dashboard/src/sse-handler.tsx +37 -0
- package/dashboard/src/views/partials/breadcrumbs.ejs +1 -1
- package/dashboard/src/views/partials/config-content.ejs +1 -1
- package/dashboard/src/views/partials/phases-content.ejs +2 -2
- package/dashboard/src/views/partials/roadmap-content.ejs +4 -4
- package/dashboard/src/watcher-setup.ts +25 -0
- package/package.json +1 -1
- package/plugins/copilot-pbr/plugin.json +1 -1
- package/plugins/cursor-pbr/.cursor-plugin/plugin.json +1 -1
- package/plugins/pbr/.claude-plugin/plugin.json +1 -1
- package/dashboard/src/services/sse.service.js +0 -58
- package/dashboard/src/services/watcher.service.js +0 -48
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@ All notable changes to Plan-Build-Run will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [2.28.0](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.27.2...plan-build-run-v2.28.0) (2026-02-24)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **38-01:** rebuild dashboard foundation with Hono + JSX + Open Props ([56596f6](https://github.com/SienkLogic/plan-build-run/commit/56596f6fe25e59d3051838bad2c8894a25754a3b))
|
|
14
|
+
|
|
15
|
+
## [2.27.2](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.27.1...plan-build-run-v2.27.2) (2026-02-24)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **37-05:** fix breadcrumb icon, milestone spacing, summary lookup, and config mode dropdown ([fd6d929](https://github.com/SienkLogic/plan-build-run/commit/fd6d92947c708e0aaba4b3d0a18897228e1957ec))
|
|
21
|
+
|
|
8
22
|
## [2.27.1](https://github.com/SienkLogic/plan-build-run/compare/plan-build-run-v2.27.0...plan-build-run-v2.27.1) (2026-02-24)
|
|
9
23
|
|
|
10
24
|
|
package/dashboard/bin/cli.js
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
import { Command } from 'commander';
|
|
4
4
|
import { resolve } from 'path';
|
|
5
|
-
import { startServer } from '../src/
|
|
5
|
+
import { startServer } from '../src/index.tsx';
|
|
6
6
|
|
|
7
7
|
const program = new Command();
|
|
8
8
|
|
|
9
9
|
program
|
|
10
10
|
.name('pbr-dashboard')
|
|
11
11
|
.description('Start the Plan-Build-Run planning dashboard')
|
|
12
|
-
.option('
|
|
13
|
-
.option('
|
|
12
|
+
.option('--dir <path>', 'Path to Plan-Build-Run project directory', process.cwd())
|
|
13
|
+
.option('--port <number>', 'Server port', '3000')
|
|
14
14
|
.parse();
|
|
15
15
|
|
|
16
16
|
const options = program.opts();
|
package/dashboard/package.json
CHANGED
|
@@ -7,8 +7,8 @@
|
|
|
7
7
|
"pbr-dashboard": "./bin/cli.js"
|
|
8
8
|
},
|
|
9
9
|
"scripts": {
|
|
10
|
-
"start": "
|
|
11
|
-
"dev": "
|
|
10
|
+
"start": "tsx bin/cli.js",
|
|
11
|
+
"dev": "tsx watch bin/cli.js",
|
|
12
12
|
"test": "vitest run",
|
|
13
13
|
"test:coverage": "vitest run --coverage"
|
|
14
14
|
},
|
|
@@ -19,19 +19,22 @@
|
|
|
19
19
|
],
|
|
20
20
|
"license": "MIT",
|
|
21
21
|
"dependencies": {
|
|
22
|
+
"@hono/node-server": "^1.14",
|
|
22
23
|
"chokidar": "^5.0.0",
|
|
23
24
|
"commander": "^12.1.0",
|
|
24
|
-
"ejs": "^3.1.10",
|
|
25
|
-
"express": "^5.1.0",
|
|
26
25
|
"gray-matter": "^4.0.3",
|
|
27
|
-
"
|
|
26
|
+
"hono": "^4.7",
|
|
28
27
|
"marked": "^17.0.1",
|
|
29
28
|
"sanitize-html": "^2.13.0"
|
|
30
29
|
},
|
|
31
30
|
"devDependencies": {
|
|
31
|
+
"@types/node": "^22",
|
|
32
32
|
"@vitest/coverage-v8": "^4.0.18",
|
|
33
33
|
"memfs": "^4.56.10",
|
|
34
34
|
"supertest": "^7.2.2",
|
|
35
|
+
"tsx": "^4.19",
|
|
36
|
+
"typed-htmx": "^0.3",
|
|
37
|
+
"typescript": "^5.7",
|
|
35
38
|
"vitest": "^4.0.18"
|
|
36
39
|
}
|
|
37
40
|
}
|