@butlerw/vellum 0.1.19 → 0.1.20

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.mjs +5 -5
  2. package/package.json +3 -3
package/dist/index.mjs CHANGED
@@ -191920,7 +191920,7 @@ init_esm_shims();
191920
191920
 
191921
191921
  // src/version.ts
191922
191922
  init_esm_shims();
191923
- var version = "0.1.19" ;
191923
+ var version = "0.1.20" ;
191924
191924
 
191925
191925
  // src/tui/components/Banner/ShimmerText.tsx
191926
191926
  init_esm_shims();
@@ -198372,8 +198372,8 @@ function Separator({
198372
198372
  const line = char.repeat(columns);
198373
198373
  return /* @__PURE__ */ jsx(Box, { width: "100%", children: /* @__PURE__ */ jsx(Text, { color, wrap: "truncate-end", children: line }) });
198374
198374
  }
198375
- const hasLineStats = additions && additions > 0 || deletions && deletions > 0;
198376
- const lineStatsText = hasLineStats ? ` +${additions ?? 0} -${deletions ?? 0}` : "";
198375
+ const showLineStats = Boolean((additions ?? 0) > 0 || (deletions ?? 0) > 0);
198376
+ const lineStatsText = showLineStats ? ` +${additions ?? 0} -${deletions ?? 0}` : "";
198377
198377
  const infoParts = [];
198378
198378
  if (workspace) {
198379
198379
  infoParts.push(workspace);
@@ -198411,7 +198411,7 @@ function Separator({
198411
198411
  return /* @__PURE__ */ jsxs(Box, { width: "100%", children: [
198412
198412
  /* @__PURE__ */ jsx(Text, { color, children: leftLine }),
198413
198413
  /* @__PURE__ */ jsx(Text, { color, children: prefixText }),
198414
- hasLineStats && /* @__PURE__ */ jsxs(Fragment, { children: [
198414
+ showLineStats ? /* @__PURE__ */ jsxs(Fragment, { children: [
198415
198415
  /* @__PURE__ */ jsxs(Text, { color: theme.colors.success, children: [
198416
198416
  " +",
198417
198417
  additions ?? 0
@@ -198420,7 +198420,7 @@ function Separator({
198420
198420
  " -",
198421
198421
  deletions ?? 0
198422
198422
  ] })
198423
- ] }),
198423
+ ] }) : null,
198424
198424
  /* @__PURE__ */ jsx(Text, { color, children: " ]" }),
198425
198425
  /* @__PURE__ */ jsx(Text, { color, children: rightLine })
198426
198426
  ] });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@butlerw/vellum",
3
- "version": "0.1.19",
3
+ "version": "0.1.20",
4
4
  "description": "Next-generation AI coding assistant CLI",
5
5
  "private": false,
6
6
  "publishConfig": {
@@ -57,10 +57,10 @@
57
57
  "tsx": "^4.21.0",
58
58
  "typescript": "^5.9.3",
59
59
  "@vellum/core": "0.1.14",
60
- "@vellum/lsp": "0.1.0",
61
60
  "@vellum/mcp": "0.1.2",
62
- "@vellum/plugin": "0.1.2",
61
+ "@vellum/lsp": "0.1.0",
63
62
  "@vellum/provider": "0.1.0",
63
+ "@vellum/plugin": "0.1.2",
64
64
  "@vellum/sandbox": "0.1.0",
65
65
  "@vellum/shared": "0.1.0"
66
66
  },