@fettstorch/clai 0.1.15 → 0.1.16

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.
@@ -13,7 +13,9 @@
13
13
  "Bash(bun:*)",
14
14
  "Bash(timeout:*)",
15
15
  "Bash(git add:*)",
16
- "Bash(git commit:*)"
16
+ "Bash(git commit:*)",
17
+ "Bash(git push:*)",
18
+ "Bash(npm publish:*)"
17
19
  ],
18
20
  "deny": []
19
21
  }
package/dist/cli.js CHANGED
@@ -54305,7 +54305,7 @@ function ora(options) {
54305
54305
  return new Ora(options);
54306
54306
  }
54307
54307
  // package.json
54308
- var version = "0.1.15";
54308
+ var version = "0.1.16";
54309
54309
  var package_default = {
54310
54310
  name: "@fettstorch/clai",
54311
54311
  version,
@@ -73486,7 +73486,8 @@ What now?:`,
73486
73486
  ],
73487
73487
  prefix: String.fromCodePoint(63),
73488
73488
  theme: {
73489
- prefix: String.fromCodePoint(63)
73489
+ prefix: String.fromCodePoint(63),
73490
+ pointer: String.fromCodePoint(62)
73490
73491
  }
73491
73492
  }
73492
73493
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fettstorch/clai",
3
- "version": "0.1.15",
3
+ "version": "0.1.16",
4
4
  "main": "dist/index.js",
5
5
  "bin": {
6
6
  "clai": "dist/cli.js"
package/src/cli.ts CHANGED
@@ -168,7 +168,8 @@ async function analyzeInput(input: string, openAIKey: string) {
168
168
  ],
169
169
  prefix: String.fromCodePoint(0x003F), // ?
170
170
  theme: {
171
- prefix: String.fromCodePoint(0x003F) // ?
171
+ prefix: String.fromCodePoint(0x003F), // ?
172
+ pointer: String.fromCodePoint(0x003E), // >
172
173
  }
173
174
  },
174
175
  ]);