@docusaurus/core 0.0.0-5081 → 0.0.0-5086
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/lib/webpack/server.js +5 -0
- package/package.json +11 -11
package/lib/webpack/server.js
CHANGED
|
@@ -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-
|
|
4
|
+
"version": "0.0.0-5086",
|
|
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-
|
|
47
|
-
"@docusaurus/logger": "0.0.0-
|
|
48
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
46
|
+
"@docusaurus/cssnano-preset": "0.0.0-5086",
|
|
47
|
+
"@docusaurus/logger": "0.0.0-5086",
|
|
48
|
+
"@docusaurus/mdx-loader": "0.0.0-5086",
|
|
49
49
|
"@docusaurus/react-loadable": "5.5.2",
|
|
50
|
-
"@docusaurus/utils": "0.0.0-
|
|
51
|
-
"@docusaurus/utils-common": "0.0.0-
|
|
52
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
53
|
-
"@slorber/static-site-generator-webpack-plugin": "^4.0.
|
|
50
|
+
"@docusaurus/utils": "0.0.0-5086",
|
|
51
|
+
"@docusaurus/utils-common": "0.0.0-5086",
|
|
52
|
+
"@docusaurus/utils-validation": "0.0.0-5086",
|
|
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-
|
|
111
|
-
"@docusaurus/types": "0.0.0-
|
|
110
|
+
"@docusaurus/module-type-aliases": "0.0.0-5086",
|
|
111
|
+
"@docusaurus/types": "0.0.0-5086",
|
|
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": "
|
|
131
|
+
"gitHead": "01a7063791b33fb049dbfc37e7026ac5e4d706d7"
|
|
132
132
|
}
|