@wix/create-new 0.0.40 → 0.0.41
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
|
@@ -50227,7 +50227,10 @@ function createHttpClient({
|
|
|
50227
50227
|
"X-XSRF-TOKEN": "nocheck",
|
|
50228
50228
|
Cookie: "XSRF-TOKEN=nocheck",
|
|
50229
50229
|
"User-Agent": "wix-cli"
|
|
50230
|
-
})
|
|
50230
|
+
}),
|
|
50231
|
+
// https://github.com/axios/axios/issues/4263 - fixed in Axios ^1.x.x but currently cannot be bumped in Wix Http Client
|
|
50232
|
+
maxBodyLength: Infinity,
|
|
50233
|
+
maxContentLength: Infinity
|
|
50231
50234
|
});
|
|
50232
50235
|
return {
|
|
50233
50236
|
...client2,
|
|
@@ -95559,7 +95562,7 @@ import { randomUUID as randomUUID2 } from "node:crypto";
|
|
|
95559
95562
|
var package_default = {
|
|
95560
95563
|
name: "@wix/create-new",
|
|
95561
95564
|
description: "General entry point for creating Wix projects",
|
|
95562
|
-
version: "0.0.
|
|
95565
|
+
version: "0.0.41",
|
|
95563
95566
|
bin: "bin/index.cjs",
|
|
95564
95567
|
devDependencies: {
|
|
95565
95568
|
"@commander-js/extra-typings": "^13.0.0",
|