@robinpath/cli 1.80.0 → 1.81.0

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.mjs +16 -5
  2. package/package.json +1 -1
package/dist/cli.mjs CHANGED
@@ -18598,7 +18598,7 @@ function getNativeModules() {
18598
18598
  import { join as join3, basename as basename2 } from "node:path";
18599
18599
  import { homedir as homedir2, platform as platform2 } from "node:os";
18600
18600
  import { existsSync as existsSync2 } from "node:fs";
18601
- var CLI_VERSION = true ? "1.80.0" : "1.80.0";
18601
+ var CLI_VERSION = true ? "1.81.0" : "1.81.0";
18602
18602
  var FLAG_QUIET = false;
18603
18603
  var FLAG_VERBOSE = false;
18604
18604
  var FLAG_AUTO_ACCEPT = false;
@@ -24245,10 +24245,21 @@ function InputArea({ onSubmit, placeholder }) {
24245
24245
  /* @__PURE__ */ jsx(Text, { color: "cyan", children: cmd.padEnd(12) }),
24246
24246
  /* @__PURE__ */ jsx(Text, { dimColor: true, children: desc })
24247
24247
  ] }, cmd)) }),
24248
- /* @__PURE__ */ jsx(Box, { borderStyle: "round", borderColor: "cyan", flexDirection: "column", paddingX: 1, marginX: 1, children: empty ? /* @__PURE__ */ jsx(Text, { dimColor: true, children: placeholder }) : lines.map((line, i) => /* @__PURE__ */ jsxs(Text, { children: [
24249
- line,
24250
- i === lines.length - 1 ? /* @__PURE__ */ jsx(Text, { color: "cyan", children: "\u2588" }) : null
24251
- ] }, i)) }),
24248
+ /* @__PURE__ */ jsxs(Box, { flexDirection: "column", marginX: 1, children: [
24249
+ /* @__PURE__ */ jsx(Text, { dimColor: true, children: "\u2500".repeat(Math.min(process.stdout.columns - 4, 76)) }),
24250
+ /* @__PURE__ */ jsx(Box, { paddingX: 1, children: empty ? /* @__PURE__ */ jsxs(Text, { dimColor: true, children: [
24251
+ "> ",
24252
+ placeholder
24253
+ ] }) : /* @__PURE__ */ jsxs(Text, { children: [
24254
+ /* @__PURE__ */ jsx(Text, { color: "cyan", children: "> " }),
24255
+ lines.map((line, i) => /* @__PURE__ */ jsxs(Text, { children: [
24256
+ i > 0 ? "\n " : "",
24257
+ line,
24258
+ i === lines.length - 1 ? /* @__PURE__ */ jsx(Text, { color: "cyan", children: "\u258E" }) : null
24259
+ ] }, i))
24260
+ ] }) }),
24261
+ /* @__PURE__ */ jsx(Text, { dimColor: true, children: "\u2500".repeat(Math.min(process.stdout.columns - 4, 76)) })
24262
+ ] }),
24252
24263
  /* @__PURE__ */ jsx(Box, { marginX: 2, children: /* @__PURE__ */ jsxs(Text, { dimColor: true, children: [
24253
24264
  /* @__PURE__ */ jsx(Text, { color: "gray", children: "enter" }),
24254
24265
  " send ",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robinpath/cli",
3
- "version": "1.80.0",
3
+ "version": "1.81.0",
4
4
  "description": "AI-powered scripting CLI — automate anything from your terminal",
5
5
  "type": "module",
6
6
  "license": "MIT",