@kubb/core 4.37.8 → 4.37.9
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.cjs
CHANGED
|
@@ -1483,7 +1483,7 @@ const fsStorage = defineStorage(() => ({
|
|
|
1483
1483
|
}));
|
|
1484
1484
|
//#endregion
|
|
1485
1485
|
//#region package.json
|
|
1486
|
-
var version = "4.37.
|
|
1486
|
+
var version = "4.37.9";
|
|
1487
1487
|
//#endregion
|
|
1488
1488
|
//#region src/utils/diagnostics.ts
|
|
1489
1489
|
/**
|
|
@@ -2208,7 +2208,7 @@ var BarrelManager = class {
|
|
|
2208
2208
|
getFiles({ files: generatedFiles, root }) {
|
|
2209
2209
|
const cachedFiles = /* @__PURE__ */ new Map();
|
|
2210
2210
|
TreeNode.build(generatedFiles, root)?.forEach((treeNode) => {
|
|
2211
|
-
if (!treeNode
|
|
2211
|
+
if (!treeNode?.children || !treeNode.parent?.data.path) return;
|
|
2212
2212
|
const barrelFile = {
|
|
2213
2213
|
path: (0, node_path.join)(treeNode.parent?.data.path, "index.ts"),
|
|
2214
2214
|
baseName: "index.ts",
|