@krovacloud/cli 0.4.0 → 0.4.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/CHANGELOG.md +12 -0
- package/package.json +5 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to `@krovacloud/cli` are documented here.
|
|
4
|
+
|
|
5
|
+
## 0.4.1
|
|
6
|
+
|
|
7
|
+
### Changed
|
|
8
|
+
|
|
9
|
+
- Re-homed into the **krova-node** monorepo. The source now lives at
|
|
10
|
+
`github.com/krovacloud/krova-node` — this release restores npm provenance and
|
|
11
|
+
the correct repository link (the previous per-package repo was made private).
|
|
12
|
+
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@krovacloud/cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Krova Cloud CLI (krova) — manage Cubes (Firecracker microVMs), browse the catalog, and log in, from your terminal.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Krova Inc.",
|
|
@@ -32,15 +32,16 @@
|
|
|
32
32
|
"files": [
|
|
33
33
|
"dist",
|
|
34
34
|
"README.md",
|
|
35
|
-
"LICENSE"
|
|
35
|
+
"LICENSE",
|
|
36
|
+
"CHANGELOG.md"
|
|
36
37
|
],
|
|
37
38
|
"engines": {
|
|
38
39
|
"node": ">=20"
|
|
39
40
|
},
|
|
40
41
|
"dependencies": {
|
|
41
42
|
"commander": "^15.0.0",
|
|
42
|
-
"@krovacloud/
|
|
43
|
-
"@krovacloud/
|
|
43
|
+
"@krovacloud/sdk": "0.1.5",
|
|
44
|
+
"@krovacloud/webhook": "0.1.4"
|
|
44
45
|
},
|
|
45
46
|
"devDependencies": {
|
|
46
47
|
"@types/node": "^22.20.0",
|