nexrall-code 0.5.28 → 0.5.30
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 +2 -2
- package/package.json +11 -11
package/dist/index.js
CHANGED
|
@@ -24654,7 +24654,7 @@ function clearStatusFooter() {
|
|
|
24654
24654
|
}
|
|
24655
24655
|
|
|
24656
24656
|
// src/commands/chat.ts
|
|
24657
|
-
var CLI_VERSION = "0.5.
|
|
24657
|
+
var CLI_VERSION = "0.5.29";
|
|
24658
24658
|
var MODEL_LABELS = {
|
|
24659
24659
|
turbo: "Nexrall Turbo",
|
|
24660
24660
|
pro: "Nexrall Pro",
|
|
@@ -26077,7 +26077,7 @@ function pluginListCommand() {
|
|
|
26077
26077
|
|
|
26078
26078
|
// src/index.ts
|
|
26079
26079
|
var program2 = new Command();
|
|
26080
|
-
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.
|
|
26080
|
+
program2.name("nex").description("Nexrall Code \u2014 AI coding assistant (powered by Nexrall)").version("0.5.29");
|
|
26081
26081
|
program2.command("auth").description("Login to your Nexrall account").action(authCommand);
|
|
26082
26082
|
program2.command("logout").description("Log out of your Nexrall account").action(logoutCommand);
|
|
26083
26083
|
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) => {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "nexrall-code",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.30",
|
|
4
4
|
"description": "Nexrall Code — AI coding assistant for your terminal (headless agent for scripts, CI and automation)",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ai",
|
|
@@ -30,21 +30,14 @@
|
|
|
30
30
|
"engines": {
|
|
31
31
|
"node": ">=18"
|
|
32
32
|
},
|
|
33
|
-
"scripts": {
|
|
34
|
-
"build": "node build.js",
|
|
35
|
-
"dev": "tsx src/index.ts",
|
|
36
|
-
"start": "node dist/index.js",
|
|
37
|
-
"test": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json && node --import tsx --test test/*.test.ts test/*.test.mts",
|
|
38
|
-
"release": "node build.js && node scripts/upload-release.js"
|
|
39
|
-
},
|
|
40
33
|
"dependencies": {
|
|
41
|
-
"@nexrall/code-core": "workspace:*",
|
|
42
34
|
"chalk": "^5.3.0",
|
|
43
35
|
"commander": "^12.0.0",
|
|
44
36
|
"diff": "^5.2.0",
|
|
45
37
|
"ora": "^8.0.1",
|
|
46
38
|
"prompts": "^2.4.2",
|
|
47
|
-
"readline": "^1.3.0"
|
|
39
|
+
"readline": "^1.3.0",
|
|
40
|
+
"@nexrall/code-core": "1.4.22"
|
|
48
41
|
},
|
|
49
42
|
"devDependencies": {
|
|
50
43
|
"@aws-sdk/client-s3": "^3.600.0",
|
|
@@ -54,5 +47,12 @@
|
|
|
54
47
|
"esbuild": "^0.20.0",
|
|
55
48
|
"tsx": "^4.7.0",
|
|
56
49
|
"typescript": "^6.0.3"
|
|
50
|
+
},
|
|
51
|
+
"scripts": {
|
|
52
|
+
"build": "node build.js",
|
|
53
|
+
"dev": "tsx src/index.ts",
|
|
54
|
+
"start": "node dist/index.js",
|
|
55
|
+
"test": "tsc --noEmit && tsc --noEmit -p test/tsconfig.json && node --import tsx --test test/*.test.ts test/*.test.mts",
|
|
56
|
+
"release": "node build.js && node scripts/upload-release.js"
|
|
57
57
|
}
|
|
58
|
-
}
|
|
58
|
+
}
|