@docusaurus/plugin-content-pages 0.0.0-4525 → 0.0.0-4533
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 +8 -8
- package/src/index.ts +1 -1
package/lib/index.js
CHANGED
|
@@ -131,7 +131,7 @@ async function pluginContentPages(context, options) {
|
|
|
131
131
|
module: {
|
|
132
132
|
rules: [
|
|
133
133
|
{
|
|
134
|
-
test:
|
|
134
|
+
test: /\.mdx?$/i,
|
|
135
135
|
include: contentDirs
|
|
136
136
|
// Trailing slash is important, see https://github.com/facebook/docusaurus/pull/3970
|
|
137
137
|
.map(utils_1.addTrailingPathSeparator),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@docusaurus/plugin-content-pages",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-4533",
|
|
4
4
|
"description": "Pages plugin for Docusaurus.",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "src/plugin-content-pages.d.ts",
|
|
@@ -18,18 +18,18 @@
|
|
|
18
18
|
},
|
|
19
19
|
"license": "MIT",
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@docusaurus/core": "0.0.0-
|
|
22
|
-
"@docusaurus/mdx-loader": "0.0.0-
|
|
23
|
-
"@docusaurus/utils": "0.0.0-
|
|
24
|
-
"@docusaurus/utils-validation": "0.0.0-
|
|
21
|
+
"@docusaurus/core": "0.0.0-4533",
|
|
22
|
+
"@docusaurus/mdx-loader": "0.0.0-4533",
|
|
23
|
+
"@docusaurus/utils": "0.0.0-4533",
|
|
24
|
+
"@docusaurus/utils-validation": "0.0.0-4533",
|
|
25
25
|
"fs-extra": "^10.0.0",
|
|
26
26
|
"globby": "^11.0.2",
|
|
27
27
|
"remark-admonitions": "^1.2.1",
|
|
28
28
|
"tslib": "^2.3.1",
|
|
29
|
-
"webpack": "^5.
|
|
29
|
+
"webpack": "^5.68.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@docusaurus/types": "0.0.0-
|
|
32
|
+
"@docusaurus/types": "0.0.0-4533"
|
|
33
33
|
},
|
|
34
34
|
"peerDependencies": {
|
|
35
35
|
"@babel/core": "^7.0.0",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"engines": {
|
|
40
40
|
"node": ">=14"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "5ab127cc566e3d1af8653a162eafbfbd64d0764e"
|
|
43
43
|
}
|
package/src/index.ts
CHANGED
|
@@ -199,7 +199,7 @@ export default async function pluginContentPages(
|
|
|
199
199
|
module: {
|
|
200
200
|
rules: [
|
|
201
201
|
{
|
|
202
|
-
test:
|
|
202
|
+
test: /\.mdx?$/i,
|
|
203
203
|
include: contentDirs
|
|
204
204
|
// Trailing slash is important, see https://github.com/facebook/docusaurus/pull/3970
|
|
205
205
|
.map(addTrailingPathSeparator),
|