@swarmvaultai/cli 3.14.0 → 3.14.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/dist/index.js +2 -2
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -330,9 +330,9 @@ program.addHelpText(
|
|
|
330
330
|
function readCliVersion() {
|
|
331
331
|
try {
|
|
332
332
|
const packageJson = JSON.parse(readFileSync(new URL("../package.json", import.meta.url), "utf8"));
|
|
333
|
-
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "3.14.
|
|
333
|
+
return typeof packageJson.version === "string" && packageJson.version.trim() ? packageJson.version : "3.14.1";
|
|
334
334
|
} catch {
|
|
335
|
-
return "3.14.
|
|
335
|
+
return "3.14.1";
|
|
336
336
|
}
|
|
337
337
|
}
|
|
338
338
|
function parsePositiveInt(value, fallback) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@swarmvaultai/cli",
|
|
3
|
-
"version": "3.14.
|
|
3
|
+
"version": "3.14.1",
|
|
4
4
|
"description": "Global CLI for SwarmVault.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"prepublishOnly": "node ../../scripts/check-release-sync.mjs && node ../../scripts/check-published-manifests.mjs"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@swarmvaultai/engine": "3.14.
|
|
47
|
+
"@swarmvaultai/engine": "3.14.1",
|
|
48
48
|
"commander": "^14.0.1"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|