@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.
- package/.claude/settings.local.json +3 -1
- package/dist/cli.js +3 -2
- package/package.json +1 -1
- package/src/cli.ts +2 -1
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.
|
|
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
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
|
]);
|