tokmon 0.8.1 → 0.8.2

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/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -585,7 +585,7 @@ function App({ interval: cliInterval }) {
585
585
  if (!dashboard) return /* @__PURE__ */ jsx(Box, { padding: 1, children: /* @__PURE__ */ jsx(Text, { dimColor: true, children: "Loading..." }) });
586
586
  const rawTableData = table ? [table.daily, table.weekly, table.monthly][view] : [];
587
587
  const tableData = sortRows(rawTableData, sort);
588
- return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", paddingX: 2, paddingY: 1, minHeight: rows, children: [
588
+ return /* @__PURE__ */ jsxs(Box, { flexDirection: "column", paddingX: 2, paddingY: 1, height: rows, children: [
589
589
  /* @__PURE__ */ jsxs(Box, { justifyContent: "space-between", children: [
590
590
  /* @__PURE__ */ jsxs(Box, { children: [
591
591
  /* @__PURE__ */ jsxs(Text, { bold: true, color: "greenBright", children: [
@@ -593,7 +593,7 @@ function App({ interval: cliInterval }) {
593
593
  " tokmon"
594
594
  ] }),
595
595
  /* @__PURE__ */ jsxs(Text, { dimColor: true, children: [
596
- " \xB7 ",
596
+ " \xB7 every ",
597
597
  cliInterval ? cliInterval / 1e3 : cfg.interval,
598
598
  "s"
599
599
  ] })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tokmon",
3
- "version": "0.8.1",
3
+ "version": "0.8.2",
4
4
  "description": "Terminal dashboard for Claude Code usage and costs",
5
5
  "type": "module",
6
6
  "bin": {