zdashboard 2.5.1 → 2.6.1
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/cli.js +5 -3
- package/dist/cli.js.map +1 -1
- package/dist/web/assets/FileIcon-B0-2gV6a.js +10 -0
- package/dist/web/assets/FilterPills-B6u1IBeC.js +1 -0
- package/dist/web/assets/{MdViewer-DoCxNu7A.js → MdViewer-Cvh3TNQI.js} +2 -2
- package/dist/web/assets/ProgressBar-CbyvyLzw.js +1 -0
- package/dist/web/assets/Workspace-DQmfVJh6.js +1 -0
- package/dist/web/assets/badge-DTb6qo3S.js +1 -0
- package/dist/web/assets/index-BfA6l4to.js +7816 -0
- package/dist/web/assets/{index-DKB8z9I8.js → index-BvuOeKbq.js} +1 -1
- package/dist/web/assets/index-DQkehbup.css +1 -0
- package/dist/web/assets/web-5newSm97.js +1 -0
- package/dist/web/assets/web-BOg9UnpC.js +1 -0
- package/dist/web/assets/web-BXCBKn6i.js +5 -0
- package/dist/web/assets/web-BcTJQUKr.js +1 -0
- package/dist/web/assets/web-C8I10oqh.js +2 -0
- package/dist/web/assets/web-CLCAgjmg.js +1 -0
- package/dist/web/assets/web-CXE89yN1.js +2 -0
- package/dist/web/index.html +2 -2
- package/package.json +2 -1
- package/dist/web/assets/FileIcon-CWL_Aew0.js +0 -110
- package/dist/web/assets/FilterPills-DfrtQ2BX.js +0 -1
- package/dist/web/assets/ProgressBar-CIDdp-03.js +0 -1
- package/dist/web/assets/Workspace-CsW6-X9a.js +0 -16
- package/dist/web/assets/badge-izTmQYbF.js +0 -1
- package/dist/web/assets/book-open-CCPWUzhH.js +0 -6
- package/dist/web/assets/file-text-DHJKu2eF.js +0 -6
- package/dist/web/assets/index-C39_SyD0.css +0 -1
- package/dist/web/assets/index-Cu37wtgU.js +0 -161
- package/dist/web/assets/vt323-latin-400-normal-Dqn9ZSPj.woff +0 -0
- package/dist/web/assets/web-9Iy8fpbv.js +0 -7
- package/dist/web/assets/web-C4KehBpT.js +0 -26
- package/dist/web/assets/web-CSsoKnCH.js +0 -2
- package/dist/web/assets/web-CnZCJ59N.js +0 -25
- package/dist/web/assets/web-DjRxK_Na.js +0 -16
- package/dist/web/assets/web-DuuJgOy2.js +0 -21
- package/dist/web/assets/web-DxAXHOpi.js +0 -16
package/dist/cli.js
CHANGED
|
@@ -167,7 +167,7 @@ import { fileURLToPath } from "url";
|
|
|
167
167
|
// package.json
|
|
168
168
|
var package_default = {
|
|
169
169
|
name: "zdashboard",
|
|
170
|
-
version: "2.
|
|
170
|
+
version: "2.6.1",
|
|
171
171
|
description: "ZCode skill dashboard platform \u2014 pluggable viewers for zdesign/zview/zreview/zgoal",
|
|
172
172
|
type: "module",
|
|
173
173
|
bin: {
|
|
@@ -189,6 +189,7 @@ var package_default = {
|
|
|
189
189
|
},
|
|
190
190
|
dependencies: {
|
|
191
191
|
"@fontsource/vt323": "^5.3.0",
|
|
192
|
+
"@phosphor-icons/react": "^2.1.10",
|
|
192
193
|
"@radix-ui/react-dropdown-menu": "^2.1.24",
|
|
193
194
|
"@radix-ui/react-scroll-area": "^1.2.0",
|
|
194
195
|
"@radix-ui/react-separator": "^1.1.0",
|
|
@@ -686,7 +687,8 @@ var ReloadService = class extends Service2 {
|
|
|
686
687
|
return () => this.clients.delete(res);
|
|
687
688
|
});
|
|
688
689
|
try {
|
|
689
|
-
this.watcher = fs5.watch(config.root, { recursive: true }, () => {
|
|
690
|
+
this.watcher = fs5.watch(config.root, { recursive: true }, (eventType, filename) => {
|
|
691
|
+
if (filename && /^(?:\.git|node_modules|dist|\.pnpm)(?:[/\\]|$)/.test(filename)) return;
|
|
690
692
|
if (this.timer) clearTimeout(this.timer);
|
|
691
693
|
this.timer = setTimeout(() => {
|
|
692
694
|
this.ctx.server.refreshGitInfo();
|
|
@@ -839,7 +841,7 @@ function scanTree(root, hasOpenspec, hasDocs) {
|
|
|
839
841
|
const docs = buildTree(paths).map((n) => ({ ...n, path: n.path ? `docs/${n.path}` : void 0 }));
|
|
840
842
|
if (docs.length) tree.push({ name: "docs", kind: "dir", children: docs });
|
|
841
843
|
}
|
|
842
|
-
const skip = /* @__PURE__ */ new Set(["openspec", "docs", "node_modules", ".git", "dist", "
|
|
844
|
+
const skip = /* @__PURE__ */ new Set(["openspec", "docs", "node_modules", ".git", "dist", "playground"]);
|
|
843
845
|
const etc = [];
|
|
844
846
|
try {
|
|
845
847
|
for (const ent of fs7.readdirSync(root, { withFileTypes: true })) {
|