@m8t-stack/cli 0.2.95 → 0.2.97

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/cli.js CHANGED
@@ -1487,7 +1487,7 @@ function installFoundryDnsShim() {
1487
1487
  }
1488
1488
 
1489
1489
  // src/lib/package-version.ts
1490
- var CLI_VERSION = "0.2.95";
1490
+ var CLI_VERSION = "0.2.97";
1491
1491
 
1492
1492
  // src/lib/render-error.ts
1493
1493
  init_errors();
@@ -20251,7 +20251,7 @@ var SIZE_PRESETS2 = {
20251
20251
  };
20252
20252
  var DEFAULT_REGISTRY2 = "ghcr.io/m8t-labs";
20253
20253
  var DEFAULT_IMAGE2 = "m8t-azure-executor";
20254
- var DEFAULT_TAG2 = "v0.1.2";
20254
+ var DEFAULT_TAG2 = "v0.1.4";
20255
20255
  var DEFAULT_MODEL2 = "gpt-5-mini";
20256
20256
  var NAME_RE2 = /^[a-z0-9-]+$/;
20257
20257
  var AzureExecDeployCommand = class extends M8tCommand {
@@ -21005,9 +21005,12 @@ function parseAssignSubscriptionRoles(v) {
21005
21005
  hint: "Use one of: true, false."
21006
21006
  });
21007
21007
  }
21008
+ function normalizeAzureLocation(location) {
21009
+ return location.trim().toLowerCase().replace(/\s+/g, "");
21010
+ }
21008
21011
  function buildBicepParams(p) {
21009
21012
  const params = [
21010
- `location=${p.location}`,
21013
+ `location=${normalizeAzureLocation(p.location)}`,
21011
21014
  `suffix=${p.suffix}`,
21012
21015
  `imageRef=${p.imageRef}`,
21013
21016
  `tenantId=${p.tenantId}`,
@@ -31631,7 +31634,7 @@ ${colors.error("\u2717")} The GitHub App on disk is installed on ${colors.field(
31631
31634
  // src/commands/bootstrap/launch.ts
31632
31635
  var DEFAULT_RG = "rg-m8t-stack";
31633
31636
  var DEFAULT_INSTALLER = "ghcr.io/m8t-labs/m8t-installer";
31634
- var DEFAULT_INSTALLER_TAG = "v0.1.65";
31637
+ var DEFAULT_INSTALLER_TAG = "v0.1.66";
31635
31638
  var ACI_NAME = "m8t-installer";
31636
31639
  var MI_NAME = "m8t-installer-mi";
31637
31640
  var BootstrapLaunchCommand = class extends M8tCommand {