@wix/create-app 0.0.179 → 0.0.180
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/index.js +5 -2
- package/build/index.js.map +1 -1
- package/package.json +2 -2
package/build/index.js
CHANGED
|
@@ -42770,7 +42770,10 @@ function createHttpClient({
|
|
|
42770
42770
|
"X-XSRF-TOKEN": "nocheck",
|
|
42771
42771
|
Cookie: "XSRF-TOKEN=nocheck",
|
|
42772
42772
|
"User-Agent": "wix-cli"
|
|
42773
|
-
})
|
|
42773
|
+
}),
|
|
42774
|
+
// https://github.com/axios/axios/issues/4263 - fixed in Axios ^1.x.x but currently cannot be bumped in Wix Http Client
|
|
42775
|
+
maxBodyLength: Infinity,
|
|
42776
|
+
maxContentLength: Infinity
|
|
42774
42777
|
});
|
|
42775
42778
|
return {
|
|
42776
42779
|
...client2,
|
|
@@ -57483,7 +57486,7 @@ function reportCommandStartEvent({
|
|
|
57483
57486
|
var package_default = {
|
|
57484
57487
|
name: "@wix/create-app",
|
|
57485
57488
|
description: "Create Wix apps",
|
|
57486
|
-
version: "0.0.
|
|
57489
|
+
version: "0.0.180",
|
|
57487
57490
|
author: "Ihor Machuzhak",
|
|
57488
57491
|
bin: "bin/index.cjs",
|
|
57489
57492
|
devDependencies: {
|