@wix/create-app 0.0.233 → 0.0.235
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/build/{chunk-BLZB3Y74.js → chunk-6P5R3I5H.js} +11 -2
- package/build/chunk-6P5R3I5H.js.map +1 -0
- package/build/{generator-LCJUKG2D.js → generator-CWHZ3FKG.js} +2 -2
- package/build/index.js +26 -3
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/build/chunk-BLZB3Y74.js.map +0 -1
- /package/build/{generator-LCJUKG2D.js.map → generator-CWHZ3FKG.js.map} +0 -0
|
@@ -14537,6 +14537,7 @@ var testOverridesSchema = zod_default.object({
|
|
|
14537
14537
|
wixCliDependencyVersion: zod_default.string().optional(),
|
|
14538
14538
|
wixCliAppDependencyVersion: zod_default.string().optional(),
|
|
14539
14539
|
disableTTY: zod_default.boolean().optional(),
|
|
14540
|
+
disableStdoutTTY: zod_default.boolean().optional(),
|
|
14540
14541
|
loginWithDeviceCodeInterval: zod_default.number().optional(),
|
|
14541
14542
|
registryUrl: zod_default.string().optional(),
|
|
14542
14543
|
fsCacheDir: zod_default.string().optional(),
|
|
@@ -14566,7 +14567,11 @@ function setupTestEnv() {
|
|
|
14566
14567
|
if (isTestEnv()) {
|
|
14567
14568
|
process2.stdout.columns = 300;
|
|
14568
14569
|
process2.stderr.columns = 300;
|
|
14569
|
-
|
|
14570
|
+
const { disableTTY, disableStdoutTTY } = getTestOverrides();
|
|
14571
|
+
process2.stdin.isTTY = !disableTTY;
|
|
14572
|
+
if (disableStdoutTTY !== void 0) {
|
|
14573
|
+
process2.stdout.isTTY = !disableStdoutTTY;
|
|
14574
|
+
}
|
|
14570
14575
|
process2.stdin.setRawMode = () => process2.stdin;
|
|
14571
14576
|
}
|
|
14572
14577
|
}
|
|
@@ -14690,6 +14695,7 @@ var CliSystemErrorCode = (0, import_variant.variant)({
|
|
|
14690
14695
|
FailedToGetMarketListing: {},
|
|
14691
14696
|
FailedToAddRequiredApp: {},
|
|
14692
14697
|
FailedToQuerySites: {},
|
|
14698
|
+
FailedToGetDomainSuggestions: {},
|
|
14693
14699
|
FailedToSetNamespace: {},
|
|
14694
14700
|
FailedToSetCodeIdentifier: {},
|
|
14695
14701
|
FailedToGetSite: {},
|
|
@@ -14816,6 +14822,9 @@ var CliUserErrorCode = (0, import_variant.variant)({
|
|
|
14816
14822
|
DeviceCodeTimedOut: {},
|
|
14817
14823
|
DuplicateComponentIdsError: (0, import_variant.fields)(),
|
|
14818
14824
|
FailedToSaveDevelopmentSite: (0, import_variant.fields)(),
|
|
14825
|
+
DevelopmentSiteNotConfigured: {},
|
|
14826
|
+
DevelopmentSiteNotFound: (0, import_variant.fields)(),
|
|
14827
|
+
DevelopmentSiteEnvironmentConflict: (0, import_variant.fields)(),
|
|
14819
14828
|
FailedToBuildApp: {},
|
|
14820
14829
|
FailedToBuildAstroApp: {},
|
|
14821
14830
|
FailedToBuildExtensionsApp: {},
|
|
@@ -17635,4 +17644,4 @@ queue-microtask/index.js:
|
|
|
17635
17644
|
run-parallel/index.js:
|
|
17636
17645
|
(*! run-parallel. MIT License. Feross Aboukhadijeh <https://feross.org/opensource> *)
|
|
17637
17646
|
*/
|
|
17638
|
-
//# sourceMappingURL=chunk-
|
|
17647
|
+
//# sourceMappingURL=chunk-6P5R3I5H.js.map
|