fumadocs-core 15.5.2 → 15.5.3

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.
@@ -270,7 +270,13 @@ function loadFiles(files, buildFile, options) {
270
270
  const storage = new FileSystem();
271
271
  for (const file of files) {
272
272
  const parsedPath = normalizePath(file.path);
273
- storage.write(parsedPath, buildFile(file));
273
+ storage.write(
274
+ parsedPath,
275
+ buildFile({
276
+ ...file,
277
+ path: parsedPath
278
+ })
279
+ );
274
280
  }
275
281
  for (const transformer of transformers) {
276
282
  transformer({
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "fumadocs-core",
3
- "version": "15.5.2",
3
+ "version": "15.5.3",
4
4
  "description": "The library for building a documentation website in Next.js",
5
5
  "keywords": [
6
6
  "NextJs",