zdashboard 2.5.0 → 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.
Files changed (37) hide show
  1. package/dist/cli.js +5 -3
  2. package/dist/cli.js.map +1 -1
  3. package/dist/web/assets/FileIcon-B0-2gV6a.js +10 -0
  4. package/dist/web/assets/FilterPills-B6u1IBeC.js +1 -0
  5. package/dist/web/assets/{MdViewer-BVog1Mmf.js → MdViewer-Cvh3TNQI.js} +2 -2
  6. package/dist/web/assets/ProgressBar-CbyvyLzw.js +1 -0
  7. package/dist/web/assets/Workspace-DQmfVJh6.js +1 -0
  8. package/dist/web/assets/badge-DTb6qo3S.js +1 -0
  9. package/dist/web/assets/index-BfA6l4to.js +7816 -0
  10. package/dist/web/assets/{index-CxJJYhye.js → index-BvuOeKbq.js} +1 -1
  11. package/dist/web/assets/index-DQkehbup.css +1 -0
  12. package/dist/web/assets/web-5newSm97.js +1 -0
  13. package/dist/web/assets/web-BOg9UnpC.js +1 -0
  14. package/dist/web/assets/web-BXCBKn6i.js +5 -0
  15. package/dist/web/assets/web-BcTJQUKr.js +1 -0
  16. package/dist/web/assets/web-C8I10oqh.js +2 -0
  17. package/dist/web/assets/web-CLCAgjmg.js +1 -0
  18. package/dist/web/assets/web-CXE89yN1.js +2 -0
  19. package/dist/web/index.html +2 -2
  20. package/package.json +2 -1
  21. package/dist/web/assets/FileIcon-CeMvyYN_.js +0 -110
  22. package/dist/web/assets/FilterPills-CkgNlhxd.js +0 -1
  23. package/dist/web/assets/ProgressBar-Cmd6BS-8.js +0 -1
  24. package/dist/web/assets/Workspace-DfmiOTyP.js +0 -16
  25. package/dist/web/assets/badge-LEpB1yPS.js +0 -1
  26. package/dist/web/assets/book-open-C6mI7nw7.js +0 -6
  27. package/dist/web/assets/file-text-BN7zorT8.js +0 -6
  28. package/dist/web/assets/index-D0Ytqw4l.js +0 -161
  29. package/dist/web/assets/index-Dr1HVqud.css +0 -1
  30. package/dist/web/assets/vt323-latin-400-normal-Dqn9ZSPj.woff +0 -0
  31. package/dist/web/assets/web-BUcxZ3zM.js +0 -2
  32. package/dist/web/assets/web-BtGB7yoQ.js +0 -16
  33. package/dist/web/assets/web-D50pz6K1.js +0 -16
  34. package/dist/web/assets/web-DVlfapY3.js +0 -21
  35. package/dist/web/assets/web-DezLgOmZ.js +0 -25
  36. package/dist/web/assets/web-DwE0xwTq.js +0 -26
  37. package/dist/web/assets/web-sOdesjte.js +0 -7
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.5.0",
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", "test-server"]);
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 })) {