@docusaurus/plugin-content-blog 3.9.2-canary-6528 → 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 +1 -1
- package/package.json +10 -10
- package/src/index.ts +1 -2
package/lib/index.js
CHANGED
|
@@ -58,7 +58,7 @@ async function pluginContentBlog(context, options) {
|
|
|
58
58
|
const { admonitions, rehypePlugins, remarkPlugins, recmaPlugins, truncateMarker, beforeDefaultRemarkPlugins, beforeDefaultRehypePlugins, } = options;
|
|
59
59
|
const contentDirs = (0, utils_1.getContentPathList)(contentPaths);
|
|
60
60
|
const mdxLoaderItem = await (0, mdx_loader_1.createMDXLoaderItem)({
|
|
61
|
-
useCrossCompilerCache: siteConfig.future.
|
|
61
|
+
useCrossCompilerCache: siteConfig.future.faster.mdxCrossCompilerCache,
|
|
62
62
|
admonitions,
|
|
63
63
|
remarkPlugins,
|
|
64
64
|
rehypePlugins,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/plugin-content-blog",
|
|
3
|
-
"version": "3.9.2-canary-
|
|
3
|
+
"version": "3.9.2-canary-6541",
|
|
4
4
|
"description": "Blog plugin for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "src/plugin-content-blog.d.ts",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
},
|
|
32
32
|
"license": "MIT",
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@docusaurus/core": "3.9.2-canary-
|
|
35
|
-
"@docusaurus/logger": "3.9.2-canary-
|
|
36
|
-
"@docusaurus/mdx-loader": "3.9.2-canary-
|
|
37
|
-
"@docusaurus/theme-common": "3.9.2-canary-
|
|
38
|
-
"@docusaurus/types": "3.9.2-canary-
|
|
39
|
-
"@docusaurus/utils": "3.9.2-canary-
|
|
40
|
-
"@docusaurus/utils-common": "3.9.2-canary-
|
|
41
|
-
"@docusaurus/utils-validation": "3.9.2-canary-
|
|
34
|
+
"@docusaurus/core": "3.9.2-canary-6541",
|
|
35
|
+
"@docusaurus/logger": "3.9.2-canary-6541",
|
|
36
|
+
"@docusaurus/mdx-loader": "3.9.2-canary-6541",
|
|
37
|
+
"@docusaurus/theme-common": "3.9.2-canary-6541",
|
|
38
|
+
"@docusaurus/types": "3.9.2-canary-6541",
|
|
39
|
+
"@docusaurus/utils": "3.9.2-canary-6541",
|
|
40
|
+
"@docusaurus/utils-common": "3.9.2-canary-6541",
|
|
41
|
+
"@docusaurus/utils-validation": "3.9.2-canary-6541",
|
|
42
42
|
"cheerio": "1.0.0-rc.12",
|
|
43
43
|
"combine-promises": "^1.1.0",
|
|
44
44
|
"feed": "^4.2.2",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"@total-typescript/shoehorn": "^0.1.2",
|
|
64
64
|
"tree-node-cli": "^1.6.0"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "60ac4995b8bfb7a1b649eb7c7ae6e812222438c5"
|
|
67
67
|
}
|
package/src/index.ts
CHANGED
|
@@ -118,8 +118,7 @@ export default async function pluginContentBlog(
|
|
|
118
118
|
const contentDirs = getContentPathList(contentPaths);
|
|
119
119
|
|
|
120
120
|
const mdxLoaderItem = await createMDXLoaderItem({
|
|
121
|
-
useCrossCompilerCache:
|
|
122
|
-
siteConfig.future.experimental_faster.mdxCrossCompilerCache,
|
|
121
|
+
useCrossCompilerCache: siteConfig.future.faster.mdxCrossCompilerCache,
|
|
123
122
|
admonitions,
|
|
124
123
|
remarkPlugins,
|
|
125
124
|
rehypePlugins,
|