@wix/create-new 0.0.93 → 0.0.95
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-4MTB5HLH.js → chunk-DHK3O5LP.js} +11 -2
- package/build/chunk-DHK3O5LP.js.map +1 -0
- package/build/{generator-T2AEF3W7.js → generator-OZQ7WFEV.js} +2 -2
- package/build/index.js +229 -10
- package/build/index.js.map +1 -1
- package/package.json +2 -2
- package/build/chunk-4MTB5HLH.js.map +0 -1
- /package/build/{generator-T2AEF3W7.js.map → generator-OZQ7WFEV.js.map} +0 -0
|
@@ -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
|
-
|
|
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: {},
|
|
@@ -21789,4 +21798,4 @@ is-git-url/index.js:
|
|
|
21789
21798
|
* Released under the MIT License.
|
|
21790
21799
|
*)
|
|
21791
21800
|
*/
|
|
21792
|
-
//# sourceMappingURL=chunk-
|
|
21801
|
+
//# sourceMappingURL=chunk-DHK3O5LP.js.map
|