nexrall-code 0.5.30 → 0.5.32
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/index.js +5 -8
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -10253,9 +10253,6 @@ var require_client = __commonJS({
|
|
|
10253
10253
|
break;
|
|
10254
10254
|
}
|
|
10255
10255
|
case "context_warning": {
|
|
10256
|
-
const message = typeof evt.message === "string" ? evt.message : "";
|
|
10257
|
-
if (message)
|
|
10258
|
-
onEvent({ type: "error", message: `\u26A0\uFE0F ${message}` });
|
|
10259
10256
|
break;
|
|
10260
10257
|
}
|
|
10261
10258
|
case "thinking": {
|
|
@@ -24572,12 +24569,12 @@ function renderBanner(info) {
|
|
|
24572
24569
|
const RIGHT_W = 44;
|
|
24573
24570
|
const GAP = 2;
|
|
24574
24571
|
const leftLines = [];
|
|
24575
|
-
leftLines.push(source_default.bold.hex("#
|
|
24572
|
+
leftLines.push(source_default.bold.hex("#3b82f6")(`Nexrall Code `) + source_default.dim(`v${info.version}`));
|
|
24576
24573
|
leftLines.push("");
|
|
24577
24574
|
leftLines.push(center(source_default.bold(`Welcome back ${info.userLabel}!`), LEFT_W));
|
|
24578
24575
|
leftLines.push("");
|
|
24579
24576
|
for (const l of NEX_LOGO)
|
|
24580
|
-
leftLines.push(center(source_default.hex("#
|
|
24577
|
+
leftLines.push(center(source_default.hex("#3b82f6")(l), LEFT_W));
|
|
24581
24578
|
leftLines.push("");
|
|
24582
24579
|
leftLines.push(source_default.dim(info.modelLabel));
|
|
24583
24580
|
leftLines.push(source_default.dim(info.workDir));
|
|
@@ -24600,7 +24597,7 @@ function renderBanner(info) {
|
|
|
24600
24597
|
rightLines.push(source_default.dim.italic("/release-notes for more"));
|
|
24601
24598
|
}
|
|
24602
24599
|
const rowCount = Math.max(leftLines.length, rightLines.length);
|
|
24603
|
-
const border = source_default.hex("#
|
|
24600
|
+
const border = source_default.hex("#3b82f6");
|
|
24604
24601
|
const lines = [];
|
|
24605
24602
|
lines.push(border("\u256D" + "\u2500".repeat(LEFT_W + GAP + RIGHT_W + 4) + "\u256E"));
|
|
24606
24603
|
for (let i2 = 0; i2 < rowCount; i2++) {
|
|
@@ -24654,7 +24651,7 @@ function clearStatusFooter() {
|
|
|
24654
24651
|
}
|
|
24655
24652
|
|
|
24656
24653
|
// src/commands/chat.ts
|
|
24657
|
-
var CLI_VERSION = "0.5.
|
|
24654
|
+
var CLI_VERSION = "0.5.32";
|
|
24658
24655
|
var MODEL_LABELS = {
|
|
24659
24656
|
turbo: "Nexrall Turbo",
|
|
24660
24657
|
pro: "Nexrall Pro",
|
|
@@ -26077,7 +26074,7 @@ function pluginListCommand() {
|
|
|
26077
26074
|
|
|
26078
26075
|
// src/index.ts
|
|
26079
26076
|
var program2 = new Command();
|
|
26080
|
-
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.
|
|
26077
|
+
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.32");
|
|
26081
26078
|
program2.command("auth").description("Login to your Nexrall account").action(authCommand);
|
|
26082
26079
|
program2.command("logout").description("Log out of your Nexrall account").action(logoutCommand);
|
|
26083
26080
|
program2.command("update").description("Update nex to the latest version").option("-c, --check", "Check for updates without installing").option("-y, --yes", "Skip confirmation prompt").action(async (opts) => {
|