@docusaurus/plugin-content-pages 3.9.2-canary-6526 → 3.9.2-canary-6541

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/index.js CHANGED
@@ -30,7 +30,7 @@ async function pluginContentPages(context, options) {
30
30
  // Trailing slash is important, see https://github.com/facebook/docusaurus/pull/3970
31
31
  .map(utils_1.addTrailingPathSeparator),
32
32
  options: {
33
- useCrossCompilerCache: siteConfig.future.experimental_faster.mdxCrossCompilerCache,
33
+ useCrossCompilerCache: siteConfig.future.faster.mdxCrossCompilerCache,
34
34
  admonitions,
35
35
  remarkPlugins,
36
36
  rehypePlugins,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-content-pages",
3
- "version": "3.9.2-canary-6526",
3
+ "version": "3.9.2-canary-6541",
4
4
  "description": "Pages plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/plugin-content-pages.d.ts",
@@ -18,11 +18,11 @@
18
18
  },
19
19
  "license": "MIT",
20
20
  "dependencies": {
21
- "@docusaurus/core": "3.9.2-canary-6526",
22
- "@docusaurus/mdx-loader": "3.9.2-canary-6526",
23
- "@docusaurus/types": "3.9.2-canary-6526",
24
- "@docusaurus/utils": "3.9.2-canary-6526",
25
- "@docusaurus/utils-validation": "3.9.2-canary-6526",
21
+ "@docusaurus/core": "3.9.2-canary-6541",
22
+ "@docusaurus/mdx-loader": "3.9.2-canary-6541",
23
+ "@docusaurus/types": "3.9.2-canary-6541",
24
+ "@docusaurus/utils": "3.9.2-canary-6541",
25
+ "@docusaurus/utils-validation": "3.9.2-canary-6541",
26
26
  "fs-extra": "^11.1.1",
27
27
  "tslib": "^2.6.0",
28
28
  "webpack": "^5.88.1"
@@ -34,5 +34,5 @@
34
34
  "engines": {
35
35
  "node": ">=20.0"
36
36
  },
37
- "gitHead": "a37ae138931cb80b31664f86a34f97671c00e409"
37
+ "gitHead": "60ac4995b8bfb7a1b649eb7c7ae6e812222438c5"
38
38
  }
package/src/index.ts CHANGED
@@ -58,8 +58,7 @@ export default async function pluginContentPages(
58
58
  // Trailing slash is important, see https://github.com/facebook/docusaurus/pull/3970
59
59
  .map(addTrailingPathSeparator),
60
60
  options: {
61
- useCrossCompilerCache:
62
- siteConfig.future.experimental_faster.mdxCrossCompilerCache,
61
+ useCrossCompilerCache: siteConfig.future.faster.mdxCrossCompilerCache,
63
62
  admonitions,
64
63
  remarkPlugins,
65
64
  rehypePlugins,