@kubb/core 0.43.1 → 0.43.2
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/index.global.js +1 -1
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.global.js
CHANGED
|
@@ -17606,7 +17606,7 @@ ${curr.source}`,
|
|
|
17606
17606
|
fileManager.events.onSuccess(async () => {
|
|
17607
17607
|
await pluginManager.hookParallel("buildEnd");
|
|
17608
17608
|
setTimeout(() => {
|
|
17609
|
-
done({ files: fileManager.files.map((file) => ({ ...file, source: fileManager.getSource(file) })) });
|
|
17609
|
+
done({ files: fileManager.files.reverse().map((file) => ({ ...file, source: fileManager.getSource(file) })) });
|
|
17610
17610
|
}, 1e3);
|
|
17611
17611
|
});
|
|
17612
17612
|
fileManager.events.onAdd(async (id, file) => {
|