@docusaurus/core 3.9.2-canary-6495 → 3.9.2-canary-6508
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/README.md +3 -1
- package/lib/webpack/base.js +0 -18
- package/package.json +11 -11
package/README.md
CHANGED
package/lib/webpack/base.js
CHANGED
|
@@ -118,24 +118,6 @@ async function createBaseConfig({ props, isServer, minify, faster, configureWebp
|
|
|
118
118
|
buildDependencies: getCacheBuildDependencies(),
|
|
119
119
|
};
|
|
120
120
|
}
|
|
121
|
-
if (process.env.DISABLE_RSPACK_INCREMENTAL) {
|
|
122
|
-
// Enabled by default since Rspack 1.4
|
|
123
|
-
console.log('Rspack incremental disabled');
|
|
124
|
-
experiments.incremental = false;
|
|
125
|
-
}
|
|
126
|
-
// See https://rspack.rs/blog/announcing-1-5#barrel-file-optimization
|
|
127
|
-
if (process.env.DISABLE_RSPACK_LAZY_BARREL) {
|
|
128
|
-
console.log('Rspack lazyBarrel disabled');
|
|
129
|
-
experiments.lazyBarrel = false;
|
|
130
|
-
}
|
|
131
|
-
else {
|
|
132
|
-
// TODO remove after we upgrade to Rspack 1.6+
|
|
133
|
-
// Enabled by default for Rspack >= 1.6
|
|
134
|
-
experiments.lazyBarrel = true;
|
|
135
|
-
}
|
|
136
|
-
// TODO re-enable later, there's an Rspack performance issue
|
|
137
|
-
// see https://github.com/facebook/docusaurus/pull/11178
|
|
138
|
-
experiments.parallelCodeSplitting = false;
|
|
139
121
|
return experiments;
|
|
140
122
|
}
|
|
141
123
|
return undefined;
|
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.9.2-canary-
|
|
4
|
+
"version": "3.9.2-canary-6508",
|
|
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.9.2-canary-
|
|
37
|
-
"@docusaurus/bundler": "3.9.2-canary-
|
|
38
|
-
"@docusaurus/logger": "3.9.2-canary-
|
|
39
|
-
"@docusaurus/mdx-loader": "3.9.2-canary-
|
|
40
|
-
"@docusaurus/utils": "3.9.2-canary-
|
|
41
|
-
"@docusaurus/utils-common": "3.9.2-canary-
|
|
42
|
-
"@docusaurus/utils-validation": "3.9.2-canary-
|
|
36
|
+
"@docusaurus/babel": "3.9.2-canary-6508",
|
|
37
|
+
"@docusaurus/bundler": "3.9.2-canary-6508",
|
|
38
|
+
"@docusaurus/logger": "3.9.2-canary-6508",
|
|
39
|
+
"@docusaurus/mdx-loader": "3.9.2-canary-6508",
|
|
40
|
+
"@docusaurus/utils": "3.9.2-canary-6508",
|
|
41
|
+
"@docusaurus/utils-common": "3.9.2-canary-6508",
|
|
42
|
+
"@docusaurus/utils-validation": "3.9.2-canary-6508",
|
|
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.9.2-canary-
|
|
81
|
-
"@docusaurus/types": "3.9.2-canary-
|
|
80
|
+
"@docusaurus/module-type-aliases": "3.9.2-canary-6508",
|
|
81
|
+
"@docusaurus/types": "3.9.2-canary-6508",
|
|
82
82
|
"@total-typescript/shoehorn": "^0.1.2",
|
|
83
83
|
"@types/detect-port": "^1.3.3",
|
|
84
84
|
"@types/react-dom": "^19.2.3",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"engines": {
|
|
98
98
|
"node": ">=20.0"
|
|
99
99
|
},
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "64cf0358e8ad6b8c0690d7e9c503bbb6eef5678b"
|
|
101
101
|
}
|