@layr-labs/ecloud-cli 0.2.2-dev → 0.3.0-dev
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 +2 -7
- 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 +2 -7
- 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/package.json +2 -2
|
@@ -155,7 +155,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
155
155
|
|
|
156
156
|
// src/utils/version.ts
|
|
157
157
|
function getCliVersion() {
|
|
158
|
-
return true ? "0.
|
|
158
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
159
159
|
}
|
|
160
160
|
function getClientId() {
|
|
161
161
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -158,7 +158,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
158
158
|
|
|
159
159
|
// src/utils/version.ts
|
|
160
160
|
function getCliVersion() {
|
|
161
|
-
return true ? "0.
|
|
161
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
162
162
|
}
|
|
163
163
|
function getClientId() {
|
|
164
164
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -155,7 +155,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
155
155
|
|
|
156
156
|
// src/utils/version.ts
|
|
157
157
|
function getCliVersion() {
|
|
158
|
-
return true ? "0.
|
|
158
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
159
159
|
}
|
|
160
160
|
function getClientId() {
|
|
161
161
|
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.
|
|
159
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
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.
|
|
159
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
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.
|
|
159
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
160
160
|
}
|
|
161
161
|
function getClientId() {
|
|
162
162
|
return `ecloud-cli/v${getCliVersion()}`;
|
|
@@ -155,7 +155,7 @@ var APPS_DIR = path2.join(CONFIG_DIR, "apps");
|
|
|
155
155
|
|
|
156
156
|
// src/utils/version.ts
|
|
157
157
|
function getCliVersion() {
|
|
158
|
-
return true ? "0.
|
|
158
|
+
return true ? "0.3.0-dev" : "0.0.0";
|
|
159
159
|
}
|
|
160
160
|
function getClientId() {
|
|
161
161
|
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.
|
|
3
|
+
"version": "0.3.0-dev",
|
|
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.
|
|
16
|
+
"@layr-labs/ecloud-sdk": "0.3.0-dev",
|
|
17
17
|
"@napi-rs/keyring": "^1.0.5",
|
|
18
18
|
"@oclif/core": "^4.8.0",
|
|
19
19
|
"axios": "^1.13.2",
|