@docusaurus/core 0.0.0-5084 → 0.0.0-5087

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.
@@ -65,6 +65,11 @@ async function createServerConfig({ props, onLinksCollected, onHeadTagsCollected
65
65
  // has any importance for this plugin, just using an empty string to
66
66
  // avoid the error. See https://github.com/facebook/docusaurus/issues/4922
67
67
  globals: { __filename: '' },
68
+ // Secret way to set SSR plugin concurrency option
69
+ // Waiting for feedback before documenting this officially?
70
+ concurrency: process.env.DOCUSAURUS_SSR_CONCURRENCY
71
+ ? parseInt(process.env.DOCUSAURUS_SSR_CONCURRENCY, 10)
72
+ : undefined,
68
73
  }),
69
74
  // Show compilation progress bar.
70
75
  new LogPlugin_1.default({
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": "0.0.0-5084",
4
+ "version": "0.0.0-5087",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
7
7
  "access": "public"
@@ -43,14 +43,14 @@
43
43
  "@babel/runtime": "^7.18.3",
44
44
  "@babel/runtime-corejs3": "^7.18.3",
45
45
  "@babel/traverse": "^7.18.2",
46
- "@docusaurus/cssnano-preset": "0.0.0-5084",
47
- "@docusaurus/logger": "0.0.0-5084",
48
- "@docusaurus/mdx-loader": "0.0.0-5084",
46
+ "@docusaurus/cssnano-preset": "0.0.0-5087",
47
+ "@docusaurus/logger": "0.0.0-5087",
48
+ "@docusaurus/mdx-loader": "0.0.0-5087",
49
49
  "@docusaurus/react-loadable": "5.5.2",
50
- "@docusaurus/utils": "0.0.0-5084",
51
- "@docusaurus/utils-common": "0.0.0-5084",
52
- "@docusaurus/utils-validation": "0.0.0-5084",
53
- "@slorber/static-site-generator-webpack-plugin": "^4.0.4",
50
+ "@docusaurus/utils": "0.0.0-5087",
51
+ "@docusaurus/utils-common": "0.0.0-5087",
52
+ "@docusaurus/utils-validation": "0.0.0-5087",
53
+ "@slorber/static-site-generator-webpack-plugin": "^4.0.7",
54
54
  "@svgr/webpack": "^6.2.1",
55
55
  "autoprefixer": "^10.4.7",
56
56
  "babel-loader": "^8.2.5",
@@ -107,8 +107,8 @@
107
107
  "webpackbar": "^5.0.2"
108
108
  },
109
109
  "devDependencies": {
110
- "@docusaurus/module-type-aliases": "0.0.0-5084",
111
- "@docusaurus/types": "0.0.0-5084",
110
+ "@docusaurus/module-type-aliases": "0.0.0-5087",
111
+ "@docusaurus/types": "0.0.0-5087",
112
112
  "@types/detect-port": "^1.3.2",
113
113
  "@types/react-dom": "^18.0.5",
114
114
  "@types/react-router-config": "^5.0.6",
@@ -128,5 +128,5 @@
128
128
  "engines": {
129
129
  "node": ">=16.14"
130
130
  },
131
- "gitHead": "4db4f1b0fa7df2b6307358354d1f6743de22e310"
131
+ "gitHead": "4b87c26bab95d93d7a4a95ca12ae675ed2da2cb9"
132
132
  }