proxitor 0.19.0 → 0.19.1
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/dist/cli.mjs +8 -9
- package/dist/cli.mjs.map +1 -1
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -19782,7 +19782,7 @@ async function runConfigMenu(client) {
|
|
|
19782
19782
|
}
|
|
19783
19783
|
//#endregion
|
|
19784
19784
|
//#region src/version.ts
|
|
19785
|
-
const version = "0.19.
|
|
19785
|
+
const version = "0.19.1";
|
|
19786
19786
|
//#endregion
|
|
19787
19787
|
//#region src/commands/doctor.ts
|
|
19788
19788
|
const DEFAULT_TIMEOUT_MS = 3e3;
|
|
@@ -24105,16 +24105,15 @@ var SessionTracker = class {
|
|
|
24105
24105
|
};
|
|
24106
24106
|
//#endregion
|
|
24107
24107
|
//#region src/proxy/observability/sinks.ts
|
|
24108
|
-
const
|
|
24109
|
-
|
|
24110
|
-
|
|
24111
|
-
|
|
24112
|
-
|
|
24113
|
-
|
|
24114
|
-
NOUSAGE: wrap("90")
|
|
24108
|
+
const STYLE = {
|
|
24109
|
+
HIT: "green",
|
|
24110
|
+
PARTIAL: "yellow",
|
|
24111
|
+
MISS: "red",
|
|
24112
|
+
COLD: "dim",
|
|
24113
|
+
NOUSAGE: "gray"
|
|
24115
24114
|
};
|
|
24116
24115
|
function colorizeLabel(label, useColor) {
|
|
24117
|
-
return useColor ?
|
|
24116
|
+
return useColor ? styleText(STYLE[label], label) : label;
|
|
24118
24117
|
}
|
|
24119
24118
|
function formatLine(obs, useColor = false) {
|
|
24120
24119
|
const { label, hitPct } = obs.outcome;
|