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.
- package/dist/source/index.js +7 -1
- package/package.json +1 -1
package/dist/source/index.js
CHANGED
|
@@ -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(
|
|
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({
|