nexrall-code 0.5.45 → 0.5.46
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 +4 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -53385,7 +53385,8 @@ function padToBottom(rowsAlreadyPrinted) {
|
|
|
53385
53385
|
if (!process.stdout.isTTY || !rows)
|
|
53386
53386
|
return;
|
|
53387
53387
|
const filler = rows - rowsAlreadyPrinted - BOTTOM_CHROME_ROWS - 2;
|
|
53388
|
-
|
|
53388
|
+
const MIN_WORTHWHILE_FILLER = 3;
|
|
53389
|
+
if (filler < MIN_WORTHWHILE_FILLER)
|
|
53389
53390
|
return;
|
|
53390
53391
|
console.log("\n".repeat(filler - 1));
|
|
53391
53392
|
}
|
|
@@ -62518,7 +62519,7 @@ var InkReadlineAdapter = class extends EventEmitter3 {
|
|
|
62518
62519
|
};
|
|
62519
62520
|
|
|
62520
62521
|
// src/commands/chat.ts
|
|
62521
|
-
var CLI_VERSION = "0.5.
|
|
62522
|
+
var CLI_VERSION = "0.5.46";
|
|
62522
62523
|
var MODEL_LABELS = {
|
|
62523
62524
|
turbo: "Nexrall Turbo",
|
|
62524
62525
|
pro: "Nexrall Pro",
|
|
@@ -63970,7 +63971,7 @@ function pluginListCommand() {
|
|
|
63970
63971
|
|
|
63971
63972
|
// src/index.ts
|
|
63972
63973
|
var program2 = new Command();
|
|
63973
|
-
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.
|
|
63974
|
+
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.46");
|
|
63974
63975
|
program2.command("auth").description("Login to your Nexrall account").action(authCommand);
|
|
63975
63976
|
program2.command("logout").description("Log out of your Nexrall account").action(logoutCommand);
|
|
63976
63977
|
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) => {
|