@neat.is/core 0.4.30-dev.20260716 → 0.4.30
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/{chunk-AOLXZWRU.js → chunk-2AJHEZIB.js} +84 -77
- package/dist/chunk-2AJHEZIB.js.map +1 -0
- package/dist/{chunk-6HPRD53A.js → chunk-4M2YMGUM.js} +2 -2
- package/dist/chunk-4M2YMGUM.js.map +1 -0
- package/dist/cli.cjs +83 -76
- package/dist/cli.cjs.map +1 -1
- package/dist/cli.js +2 -2
- package/dist/index.cjs +83 -76
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -2
- package/dist/neatd.cjs +83 -76
- package/dist/neatd.cjs.map +1 -1
- package/dist/neatd.js +2 -2
- package/dist/server.cjs +1 -1
- package/dist/server.cjs.map +1 -1
- package/dist/server.js +1 -1
- package/package.json +2 -2
- package/dist/chunk-6HPRD53A.js.map +0 -1
- package/dist/chunk-AOLXZWRU.js.map +0 -1
|
@@ -771,7 +771,7 @@ function getTransitiveDependencies(graph, nodeId, depth = TRANSITIVE_DEPENDENCIE
|
|
|
771
771
|
const enqueued = /* @__PURE__ */ new Set([nodeId]);
|
|
772
772
|
while (queue.length > 0) {
|
|
773
773
|
const frame = queue.shift();
|
|
774
|
-
if (frame.distance > 0 && frame.edge) {
|
|
774
|
+
if (frame.distance > 0 && frame.edge && frame.edge.type !== EdgeType.CONTAINS) {
|
|
775
775
|
seen.set(frame.nodeId, {
|
|
776
776
|
nodeId: frame.nodeId,
|
|
777
777
|
distance: frame.distance,
|
|
@@ -9233,4 +9233,4 @@ export {
|
|
|
9233
9233
|
recordConnectorPoll,
|
|
9234
9234
|
buildApi
|
|
9235
9235
|
};
|
|
9236
|
-
//# sourceMappingURL=chunk-
|
|
9236
|
+
//# sourceMappingURL=chunk-4M2YMGUM.js.map
|