@rivora/cli 0.1.0 → 0.1.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/LICENSE +8 -0
- package/dist/index.js +1 -2
- package/package.json +5 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
Copyright (c) 2026 Rivora AI, Inc. All rights reserved.
|
|
2
|
+
|
|
3
|
+
This software and its source code are proprietary and confidential.
|
|
4
|
+
Unauthorized copying, distribution, modification, or use of this
|
|
5
|
+
software, in whole or in part, is strictly prohibited without prior
|
|
6
|
+
written permission from Rivora AI, Inc.
|
|
7
|
+
|
|
8
|
+
For licensing inquiries, contact: legal@rivora.dev
|
package/dist/index.js
CHANGED
|
@@ -186441,8 +186441,7 @@ var updateCommand = new Command2("update").description("Update Rivora CLI to the
|
|
|
186441
186441
|
return;
|
|
186442
186442
|
}
|
|
186443
186443
|
spinner.start("Downloading update...");
|
|
186444
|
-
|
|
186445
|
-
await execAsync(installScript);
|
|
186444
|
+
await execAsync(`npm install -g @rivora/cli@${latestVersion}`);
|
|
186446
186445
|
spinner.succeed(`Updated to v${latestVersion}`);
|
|
186447
186446
|
console.log();
|
|
186448
186447
|
console.log(source_default.green("\u2713"), "Rivora CLI has been updated");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rivora/cli",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "Rivora CLI - Infrastructure Intelligence Layer",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -10,7 +10,8 @@
|
|
|
10
10
|
},
|
|
11
11
|
"files": [
|
|
12
12
|
"dist/index.js",
|
|
13
|
-
"README.md"
|
|
13
|
+
"README.md",
|
|
14
|
+
"LICENSE"
|
|
14
15
|
],
|
|
15
16
|
"publishConfig": {
|
|
16
17
|
"access": "public"
|
|
@@ -53,7 +54,8 @@
|
|
|
53
54
|
"@types/inquirer": "^9.0.7",
|
|
54
55
|
"@types/node": "^20.10.0",
|
|
55
56
|
"@types/uuid": "^11.0.0",
|
|
56
|
-
"vitest": "^4.0.16"
|
|
57
|
+
"vitest": "^4.0.16",
|
|
58
|
+
"wrangler": "^4.67.0"
|
|
57
59
|
},
|
|
58
60
|
"peerDependencies": {
|
|
59
61
|
"typescript": "^5"
|