@layr-labs/ecloud-cli 0.4.1 → 0.4.2
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/VERSION +2 -2
- package/dist/commands/compute/app/deploy.js +58 -4
- package/dist/commands/compute/app/deploy.js.map +1 -1
- package/dist/commands/compute/app/info.js +1 -1
- package/dist/commands/compute/app/list.js +1 -1
- package/dist/commands/compute/app/logs.js +1 -1
- package/dist/commands/compute/app/profile/set.js +1 -1
- package/dist/commands/compute/app/releases.js +1 -1
- package/dist/commands/compute/app/start.js +1 -1
- package/dist/commands/compute/app/stop.js +1 -1
- package/dist/commands/compute/app/terminate.js +1 -1
- package/dist/commands/compute/app/upgrade.js +58 -4
- package/dist/commands/compute/app/upgrade.js.map +1 -1
- package/dist/commands/compute/build/info.js +1 -1
- package/dist/commands/compute/build/list.js +1 -1
- package/dist/commands/compute/build/logs.js +1 -1
- package/dist/commands/compute/build/status.js +1 -1
- package/dist/commands/compute/build/submit.js +1 -1
- package/dist/commands/compute/build/verify.js +1 -1
- package/dist/commands/compute/undelegate.js +1 -1
- package/dist/hooks/init/__tests__/version-check.test.js +1 -1
- package/dist/hooks/init/version-check.js +1 -1
- package/package.json +2 -2
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.
|
|
159
|
+
return true ? "0.4.2" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -159,7 +159,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
159
159
|
|
|
160
160
|
// src/utils/version.ts
|
|
161
161
|
function getCliVersion() {
|
|
162
|
-
return true ? "0.4.
|
|
162
|
+
return true ? "0.4.2" : "0.0.0";
|
|
163
163
|
}
|
|
164
164
|
function getClientId() {
|
|
165
165
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.
|
|
159
|
+
return true ? "0.4.2" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.
|
|
160
|
+
return true ? "0.4.2" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.
|
|
160
|
+
return true ? "0.4.2" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -157,7 +157,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
157
157
|
|
|
158
158
|
// src/utils/version.ts
|
|
159
159
|
function getCliVersion() {
|
|
160
|
-
return true ? "0.4.
|
|
160
|
+
return true ? "0.4.2" : "0.0.0";
|
|
161
161
|
}
|
|
162
162
|
function getClientId() {
|
|
163
163
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -156,7 +156,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
156
156
|
|
|
157
157
|
// src/utils/version.ts
|
|
158
158
|
function getCliVersion() {
|
|
159
|
-
return true ? "0.4.
|
|
159
|
+
return true ? "0.4.2" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@layr-labs/ecloud-cli",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist",
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
},
|
|
14
14
|
"dependencies": {
|
|
15
15
|
"@inquirer/prompts": "^7.10.1",
|
|
16
|
-
"@layr-labs/ecloud-sdk": "0.4.
|
|
16
|
+
"@layr-labs/ecloud-sdk": "0.4.2",
|
|
17
17
|
"@napi-rs/keyring": "^1.0.5",
|
|
18
18
|
"@oclif/core": "^4.8.0",
|
|
19
19
|
"axios": "^1.13.2",
|