@wix/create-new 0.0.94 → 0.0.96

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.
@@ -18181,6 +18181,7 @@ var testOverridesSchema = zod_default.object({
18181
18181
  wixCliDependencyVersion: zod_default.string().optional(),
18182
18182
  wixCliAppDependencyVersion: zod_default.string().optional(),
18183
18183
  disableTTY: zod_default.boolean().optional(),
18184
+ disableStdoutTTY: zod_default.boolean().optional(),
18184
18185
  loginWithDeviceCodeInterval: zod_default.number().optional(),
18185
18186
  registryUrl: zod_default.string().optional(),
18186
18187
  fsCacheDir: zod_default.string().optional(),
@@ -18210,7 +18211,11 @@ function setupTestEnv() {
18210
18211
  if (isTestEnv()) {
18211
18212
  process2.stdout.columns = 300;
18212
18213
  process2.stderr.columns = 300;
18213
- process2.stdin.isTTY = !getTestOverrides().disableTTY;
18214
+ const { disableTTY, disableStdoutTTY } = getTestOverrides();
18215
+ process2.stdin.isTTY = !disableTTY;
18216
+ if (disableStdoutTTY !== void 0) {
18217
+ process2.stdout.isTTY = !disableStdoutTTY;
18218
+ }
18214
18219
  process2.stdin.setRawMode = () => process2.stdin;
18215
18220
  }
18216
18221
  }
@@ -18352,6 +18357,7 @@ var CliSystemErrorCode = (0, import_variant.variant)({
18352
18357
  FailedToGetMarketListing: {},
18353
18358
  FailedToAddRequiredApp: {},
18354
18359
  FailedToQuerySites: {},
18360
+ FailedToGetDomainSuggestions: {},
18355
18361
  FailedToSetNamespace: {},
18356
18362
  FailedToSetCodeIdentifier: {},
18357
18363
  FailedToGetSite: {},
@@ -18478,6 +18484,9 @@ var CliUserErrorCode = (0, import_variant.variant)({
18478
18484
  DeviceCodeTimedOut: {},
18479
18485
  DuplicateComponentIdsError: (0, import_variant.fields)(),
18480
18486
  FailedToSaveDevelopmentSite: (0, import_variant.fields)(),
18487
+ DevelopmentSiteNotConfigured: {},
18488
+ DevelopmentSiteNotFound: (0, import_variant.fields)(),
18489
+ DevelopmentSiteEnvironmentConflict: (0, import_variant.fields)(),
18481
18490
  FailedToBuildApp: {},
18482
18491
  FailedToBuildAstroApp: {},
18483
18492
  FailedToBuildExtensionsApp: {},
@@ -21415,7 +21424,6 @@ var wixAstroAppConfigSchema = zod_default.object({
21415
21424
  $schema: zod_default.string().optional(),
21416
21425
  projectType: zod_default.literal("App"),
21417
21426
  appId: zod_default.string(),
21418
- experimentalStandaloneExtensions: zod_default.boolean().optional(),
21419
21427
  projectId: zod_default.string().optional(),
21420
21428
  codeIdentifier: zod_default.string().optional(),
21421
21429
  namespace: zod_default.string().optional()
@@ -21789,4 +21797,4 @@ is-git-url/index.js:
21789
21797
  * Released under the MIT License.
21790
21798
  *)
21791
21799
  */
21792
- //# sourceMappingURL=chunk-4MTB5HLH.js.map
21800
+ //# sourceMappingURL=chunk-53VKLHMI.js.map