@docusaurus/core 3.7.0-canary-6306 → 3.7.0-canary-6308

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.
Files changed (2) hide show
  1. package/lib/ssg/ssgEnv.js +3 -4
  2. package/package.json +11 -11
package/lib/ssg/ssgEnv.js CHANGED
@@ -33,7 +33,6 @@ exports.SSGWorkerThreadTaskSize = process.env
33
33
  exports.SSGWorkerThreadRecyclerMaxMemory = process.env
34
34
  .DOCUSAURUS_SSG_WORKER_THREAD_RECYCLER_MAX_MEMORY
35
35
  ? parseInt(process.env.DOCUSAURUS_SSG_WORKER_THREAD_RECYCLER_MAX_MEMORY, 10)
36
- : // TODO we should probably provide a default value here
37
- // 2gb is a quite reasonable max that should work well even for large sites
38
- // we'd rather ask community feedback first
39
- undefined;
36
+ : // 1 GB is a quite reasonable max value
37
+ // It should work well even for large sites
38
+ 1000000000;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@docusaurus/core",
3
3
  "description": "Easy to Maintain Open Source Documentation Websites",
4
- "version": "3.7.0-canary-6306",
4
+ "version": "3.7.0-canary-6308",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -33,13 +33,13 @@
33
33
  "url": "https://github.com/facebook/docusaurus/issues"
34
34
  },
35
35
  "dependencies": {
36
- "@docusaurus/babel": "3.7.0-canary-6306",
37
- "@docusaurus/bundler": "3.7.0-canary-6306",
38
- "@docusaurus/logger": "3.7.0-canary-6306",
39
- "@docusaurus/mdx-loader": "3.7.0-canary-6306",
40
- "@docusaurus/utils": "3.7.0-canary-6306",
41
- "@docusaurus/utils-common": "3.7.0-canary-6306",
42
- "@docusaurus/utils-validation": "3.7.0-canary-6306",
36
+ "@docusaurus/babel": "3.7.0-canary-6308",
37
+ "@docusaurus/bundler": "3.7.0-canary-6308",
38
+ "@docusaurus/logger": "3.7.0-canary-6308",
39
+ "@docusaurus/mdx-loader": "3.7.0-canary-6308",
40
+ "@docusaurus/utils": "3.7.0-canary-6308",
41
+ "@docusaurus/utils-common": "3.7.0-canary-6308",
42
+ "@docusaurus/utils-validation": "3.7.0-canary-6308",
43
43
  "boxen": "^6.2.1",
44
44
  "chalk": "^4.1.2",
45
45
  "chokidar": "^3.5.3",
@@ -77,8 +77,8 @@
77
77
  "webpack-merge": "^6.0.1"
78
78
  },
79
79
  "devDependencies": {
80
- "@docusaurus/module-type-aliases": "3.7.0-canary-6306",
81
- "@docusaurus/types": "3.7.0-canary-6306",
80
+ "@docusaurus/module-type-aliases": "3.7.0-canary-6308",
81
+ "@docusaurus/types": "3.7.0-canary-6308",
82
82
  "@total-typescript/shoehorn": "^0.1.2",
83
83
  "@types/detect-port": "^1.3.3",
84
84
  "@types/react-dom": "^18.2.7",
@@ -98,5 +98,5 @@
98
98
  "engines": {
99
99
  "node": ">=18.0"
100
100
  },
101
- "gitHead": "dcf186385e435daad27b0ce373a186f3ce145618"
101
+ "gitHead": "a2509949af8477ab62cebbf8a53388c84a8e4fd4"
102
102
  }