nexrall-code 0.5.31 → 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 -5
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -24569,12 +24569,12 @@ function renderBanner(info) {
|
|
|
24569
24569
|
const RIGHT_W = 44;
|
|
24570
24570
|
const GAP = 2;
|
|
24571
24571
|
const leftLines = [];
|
|
24572
|
-
leftLines.push(source_default.bold.hex("#
|
|
24572
|
+
leftLines.push(source_default.bold.hex("#3b82f6")(`Nexrall Code `) + source_default.dim(`v${info.version}`));
|
|
24573
24573
|
leftLines.push("");
|
|
24574
24574
|
leftLines.push(center(source_default.bold(`Welcome back ${info.userLabel}!`), LEFT_W));
|
|
24575
24575
|
leftLines.push("");
|
|
24576
24576
|
for (const l of NEX_LOGO)
|
|
24577
|
-
leftLines.push(center(source_default.hex("#
|
|
24577
|
+
leftLines.push(center(source_default.hex("#3b82f6")(l), LEFT_W));
|
|
24578
24578
|
leftLines.push("");
|
|
24579
24579
|
leftLines.push(source_default.dim(info.modelLabel));
|
|
24580
24580
|
leftLines.push(source_default.dim(info.workDir));
|
|
@@ -24597,7 +24597,7 @@ function renderBanner(info) {
|
|
|
24597
24597
|
rightLines.push(source_default.dim.italic("/release-notes for more"));
|
|
24598
24598
|
}
|
|
24599
24599
|
const rowCount = Math.max(leftLines.length, rightLines.length);
|
|
24600
|
-
const border = source_default.hex("#
|
|
24600
|
+
const border = source_default.hex("#3b82f6");
|
|
24601
24601
|
const lines = [];
|
|
24602
24602
|
lines.push(border("\u256D" + "\u2500".repeat(LEFT_W + GAP + RIGHT_W + 4) + "\u256E"));
|
|
24603
24603
|
for (let i2 = 0; i2 < rowCount; i2++) {
|
|
@@ -24651,7 +24651,7 @@ function clearStatusFooter() {
|
|
|
24651
24651
|
}
|
|
24652
24652
|
|
|
24653
24653
|
// src/commands/chat.ts
|
|
24654
|
-
var CLI_VERSION = "0.5.
|
|
24654
|
+
var CLI_VERSION = "0.5.32";
|
|
24655
24655
|
var MODEL_LABELS = {
|
|
24656
24656
|
turbo: "Nexrall Turbo",
|
|
24657
24657
|
pro: "Nexrall Pro",
|
|
@@ -26074,7 +26074,7 @@ function pluginListCommand() {
|
|
|
26074
26074
|
|
|
26075
26075
|
// src/index.ts
|
|
26076
26076
|
var program2 = new Command();
|
|
26077
|
-
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");
|
|
26078
26078
|
program2.command("auth").description("Login to your Nexrall account").action(authCommand);
|
|
26079
26079
|
program2.command("logout").description("Log out of your Nexrall account").action(logoutCommand);
|
|
26080
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) => {
|