@hyperdreamer/pi-webui 1.11.4 → 1.11.6
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 +6 -2
- package/dist/client/assets/{CodeViewer-RC12gm-a.js → CodeViewer-DUqxkZ3h.js} +1 -1
- package/dist/client/assets/{UnifiedDiffViewer-BKkTUzo8.js → UnifiedDiffViewer-CqMCpp0S.js} +1 -1
- package/dist/client/assets/{index-6Nw3vRPS.js → index-BjHB0gQv.js} +445 -437
- package/dist/client/index.html +1 -1
- package/package.json +3 -2
package/dist/client/index.html
CHANGED
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
html, body { margin: 0; height: 100%; overflow: hidden; background: var(--pi-bg); color: var(--pi-text); }
|
|
55
55
|
body { min-height: 100dvh; }
|
|
56
56
|
</style>
|
|
57
|
-
<script type="module" crossorigin src="./assets/index-
|
|
57
|
+
<script type="module" crossorigin src="./assets/index-BjHB0gQv.js"></script>
|
|
58
58
|
<link rel="modulepreload" crossorigin href="./assets/vendor-editor-core-vUi74DnD.js">
|
|
59
59
|
<link rel="modulepreload" crossorigin href="./assets/vendor-editor-languages-DoaXUodB.js">
|
|
60
60
|
<link rel="modulepreload" crossorigin href="./assets/vendor-terminal-D8k4UKM2.js">
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperdreamer/pi-webui",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.6",
|
|
4
4
|
"description": "Web UI for persistent Pi Coding Agent sessions in real workspaces.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Federico Jaramillo Martinez and HyperDreamer",
|
|
@@ -40,9 +40,10 @@
|
|
|
40
40
|
"typecheck:cached": "tsc --noEmit --incremental --tsBuildInfoFile node_modules/.cache/pi-webui/typecheck.tsbuildinfo",
|
|
41
41
|
"knip": "knip",
|
|
42
42
|
"lint": "eslint --no-error-on-unmatched-pattern \"src/**/*.ts\" \"extensions/**/*.ts\" \"pi-webui-plugins/**/*.ts\" \"optional-skills/**/*.mjs\" vite.config.ts vitest.config.ts",
|
|
43
|
-
"test": "vitest run --config vitest.config.ts",
|
|
43
|
+
"test": "vitest run --config vitest.config.ts --maxWorkers=4",
|
|
44
44
|
"test:fast": "vitest run --config vitest.config.ts --maxWorkers=4",
|
|
45
45
|
"test:serial": "vitest run --config vitest.config.ts --maxWorkers=1",
|
|
46
|
+
"verify:fast": "npm run typecheck && npm run lint && npm run knip && npm run test:fast",
|
|
46
47
|
"verify": "npm run typecheck && npm run lint && npm run knip && npm run test:serial",
|
|
47
48
|
"verify:staged": "node scripts/verify-staged.mjs",
|
|
48
49
|
"start": "tsx src/server/index.ts",
|