@wrongstack/webui 0.267.0 → 0.269.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/assets/index-BwJjYOM3.css +2 -0
- package/dist/assets/index-Dlznb4DM.js +121 -0
- package/dist/assets/{vendor-HxGAEBey.js → vendor-BL9KT5LK.js} +287 -252
- package/dist/assets/{vendor-B2D6LvU3.css → vendor-BzqIVtlT.css} +1 -1
- package/dist/index.html +4 -4
- package/dist/index.js +6217 -5279
- package/dist/index.js.map +1 -1
- package/dist/server/entry.js +4604 -3627
- package/dist/server/entry.js.map +1 -1
- package/dist/server/index.d.ts +3 -1
- package/dist/server/index.js +5261 -4533
- package/dist/server/index.js.map +1 -1
- package/dist/types.d.ts +38 -0
- package/package.json +11 -6
- package/dist/assets/index-UZtAQH-v.css +0 -2
- package/dist/assets/index-q6W9UOEF.js +0 -121
package/dist/server/index.d.ts
CHANGED
|
@@ -410,7 +410,9 @@ declare function handleGitInfo(ws: WebSocket, projectRoot: string): Promise<void
|
|
|
410
410
|
* The file list comes from `git status --porcelain -z` (NUL-delimited so
|
|
411
411
|
* paths with spaces/unicode survive intact, and renames are unambiguous).
|
|
412
412
|
* Per-file line counts come from `--numstat` of both the unstaged and the
|
|
413
|
-
* staged diff, summed
|
|
413
|
+
* staged diff, summed. Untracked files intentionally report 0/0 here so the
|
|
414
|
+
* list view does not read every untracked file; `git.diff` loads a selected
|
|
415
|
+
* file lazily on demand.
|
|
414
416
|
* Never throws — a non-repo yields an empty list.
|
|
415
417
|
*/
|
|
416
418
|
declare function handleGitChanges(ws: WebSocket, projectRoot: string): Promise<void>;
|