@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 CHANGED
@@ -1,2 +1,2 @@
1
- version=0.2.2-dev
2
- commit=549da0a4121d064a66af11f15a509934858d9e2d
1
+ version=0.3.0-dev
2
+ commit=f66f41c4db37c3eb732f093499934884d8132a71
@@ -304,7 +304,7 @@ function findAvailableName(environment, baseName) {
304
304
 
305
305
  // src/utils/version.ts
306
306
  function getCliVersion() {
307
- return true ? "0.2.2-dev" : "0.0.0";
307
+ return true ? "0.3.0-dev" : "0.0.0";
308
308
  }
309
309
  function getClientId() {
310
310
  return `ecloud-cli/v${getCliVersion()}`;
@@ -1532,11 +1532,6 @@ var AppDeploy = class _AppDeploy extends Command {
1532
1532
  "build-dependencies": Flags2.string({
1533
1533
  description: "Dependency digests for verifiable build (git source mode) (sha256:...)",
1534
1534
  multiple: true
1535
- }),
1536
- "build-caddyfile": Flags2.string({
1537
- description: "Optional path to Caddyfile inside the repo (relative to build context). If omitted, auto-detected from env file TLS settings",
1538
- required: false,
1539
- env: "ECLOUD_BUILD_CADDYFILE"
1540
1535
  })
1541
1536
  };
1542
1537
  async run() {
@@ -1611,7 +1606,7 @@ var AppDeploy = class _AppDeploy extends Command {
1611
1606
  repoUrl: flags.repo,
1612
1607
  gitRef: flags.commit,
1613
1608
  dockerfilePath: flags["build-dockerfile"],
1614
- caddyfilePath: flags["build-caddyfile"],
1609
+ caddyfilePath: void 0,
1615
1610
  buildContextPath: flags["build-context"],
1616
1611
  dependencies: flags["build-dependencies"]
1617
1612
  } : await promptVerifiableGitSourceInputs();