fumadocs-mdx 11.5.5 → 11.5.6
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/dist/next/index.cjs +2 -2
- package/dist/next/index.js +2 -2
- package/package.json +5 -5
package/dist/next/index.cjs
CHANGED
|
@@ -229,10 +229,10 @@ ${issues.map((issue) => ` ${issue.path}: ${issue.message}`).join("\n")}`;
|
|
|
229
229
|
var map = /* @__PURE__ */ new Map();
|
|
230
230
|
var fileCache = {
|
|
231
231
|
read(namespace, path6) {
|
|
232
|
-
return map.get(`${namespace}.${path6}
|
|
232
|
+
return map.get(`${namespace}.${path6}`);
|
|
233
233
|
},
|
|
234
234
|
write(namespace, path6, data) {
|
|
235
|
-
map.set(`${namespace}.${path6}
|
|
235
|
+
map.set(`${namespace}.${path6}`, data);
|
|
236
236
|
},
|
|
237
237
|
removeCache(path6) {
|
|
238
238
|
for (const key of map.keys()) {
|
package/dist/next/index.js
CHANGED
|
@@ -34,10 +34,10 @@ function getTypeFromPath(path5) {
|
|
|
34
34
|
var map = /* @__PURE__ */ new Map();
|
|
35
35
|
var fileCache = {
|
|
36
36
|
read(namespace, path5) {
|
|
37
|
-
return map.get(`${namespace}.${path5}
|
|
37
|
+
return map.get(`${namespace}.${path5}`);
|
|
38
38
|
},
|
|
39
39
|
write(namespace, path5, data) {
|
|
40
|
-
map.set(`${namespace}.${path5}
|
|
40
|
+
map.set(`${namespace}.${path5}`, data);
|
|
41
41
|
},
|
|
42
42
|
removeCache(path5) {
|
|
43
43
|
for (const key of map.keys()) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fumadocs-mdx",
|
|
3
|
-
"version": "11.5.
|
|
3
|
+
"version": "11.5.6",
|
|
4
4
|
"description": "The built-in source for Fumadocs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"NextJs",
|
|
@@ -51,21 +51,21 @@
|
|
|
51
51
|
"fast-glob": "^3.3.3",
|
|
52
52
|
"gray-matter": "^4.0.3",
|
|
53
53
|
"unist-util-visit": "^5.0.0",
|
|
54
|
-
"zod": "^3.24.
|
|
54
|
+
"zod": "^3.24.2"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"@types/cross-spawn": "^6.0.6",
|
|
58
58
|
"@types/mdast": "^4.0.3",
|
|
59
59
|
"@types/mdx": "^2.0.13",
|
|
60
|
-
"@types/react": "^19.0.
|
|
60
|
+
"@types/react": "^19.0.9",
|
|
61
61
|
"mdast-util-mdx-jsx": "^3.2.0",
|
|
62
|
-
"next": "^15.1.
|
|
62
|
+
"next": "^15.1.7",
|
|
63
63
|
"unified": "^11.0.5",
|
|
64
64
|
"vfile": "^6.0.3",
|
|
65
65
|
"webpack": "^5.97.1",
|
|
66
66
|
"@fumadocs/mdx-remote": "1.2.0",
|
|
67
67
|
"eslint-config-custom": "0.0.0",
|
|
68
|
-
"fumadocs-core": "15.0.
|
|
68
|
+
"fumadocs-core": "15.0.9",
|
|
69
69
|
"tsconfig": "0.0.0"
|
|
70
70
|
},
|
|
71
71
|
"peerDependencies": {
|