hlidskjalf 0.0.1 → 0.0.3

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 (2) hide show
  1. package/dist/index.js +4 -4
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -243,7 +243,7 @@ var statusDisplay = {
243
243
  pending: { color: "gray", label: "pending" },
244
244
  building: { color: "yellow", label: "building" },
245
245
  watching: { color: "green", label: "watching" },
246
- ready: { color: "green", label: "ready" },
246
+ ready: { color: "green", label: "watching" },
247
247
  error: { color: "red", label: "error" },
248
248
  stopped: { color: "gray", label: "stopped" }
249
249
  };
@@ -262,8 +262,8 @@ function Dashboard({ processes, selectedIndex }) {
262
262
  return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", children: [
263
263
  /* @__PURE__ */ jsxs(Box, { children: [
264
264
  /* @__PURE__ */ jsxs(Box, { flexGrow: 1, children: [
265
- /* @__PURE__ */ jsx(Text, { color: allReady ? "yellow" : "gray", children: allReady ? "\u{1F3D4}" : "\u25E6" }),
266
- /* @__PURE__ */ jsx(Text, { bold: true, children: allReady ? " Hlidskjalf" : " Hlidskjalf" })
265
+ /* @__PURE__ */ jsx(Text, { color: allReady ? "green" : "gray", children: "\u25CF " }),
266
+ /* @__PURE__ */ jsx(Text, { bold: true, children: "Hlidskjalf" })
267
267
  ] }),
268
268
  showHints && /* @__PURE__ */ jsx(Text, { dimColor: true, children: HINTS })
269
269
  ] }),
@@ -317,7 +317,7 @@ function Loading() {
317
317
  const cols = stdout?.columns ?? 80;
318
318
  return /* @__PURE__ */ jsxs2(Box2, { flexDirection: "column", children: [
319
319
  /* @__PURE__ */ jsxs2(Box2, { children: [
320
- /* @__PURE__ */ jsx2(Text2, { color: "gray", children: "\u25E6 " }),
320
+ /* @__PURE__ */ jsx2(Text2, { color: "gray", children: "\u25CF " }),
321
321
  /* @__PURE__ */ jsx2(Text2, { bold: true, children: "Hlidskjalf" })
322
322
  ] }),
323
323
  /* @__PURE__ */ jsx2(Text2, { dimColor: true, children: "\u2500".repeat(cols) }),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hlidskjalf",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Terminal UI for monitoring Turborepo workspaces",
5
5
  "type": "module",
6
6
  "license": "MIT",