@kubb/core 4.37.8 → 4.37.10
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.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +7 -7
- package/src/BarrelManager.ts +1 -1
package/dist/index.js
CHANGED
|
@@ -1475,7 +1475,7 @@ const fsStorage = defineStorage(() => ({
|
|
|
1475
1475
|
}));
|
|
1476
1476
|
//#endregion
|
|
1477
1477
|
//#region package.json
|
|
1478
|
-
var version$1 = "4.37.
|
|
1478
|
+
var version$1 = "4.37.10";
|
|
1479
1479
|
//#endregion
|
|
1480
1480
|
//#region src/utils/diagnostics.ts
|
|
1481
1481
|
/**
|
|
@@ -2200,7 +2200,7 @@ var BarrelManager = class {
|
|
|
2200
2200
|
getFiles({ files: generatedFiles, root }) {
|
|
2201
2201
|
const cachedFiles = /* @__PURE__ */ new Map();
|
|
2202
2202
|
TreeNode.build(generatedFiles, root)?.forEach((treeNode) => {
|
|
2203
|
-
if (!treeNode
|
|
2203
|
+
if (!treeNode?.children || !treeNode.parent?.data.path) return;
|
|
2204
2204
|
const barrelFile = {
|
|
2205
2205
|
path: join(treeNode.parent?.data.path, "index.ts"),
|
|
2206
2206
|
baseName: "index.ts",
|