@elyx-code/project-logic-tree 0.0.6928 → 0.0.6929
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 +1 -1
- package/dist/index.js +6 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -198755,9 +198755,11 @@ function yr(s, p = /* @__PURE__ */ new Set()) {
|
|
|
198755
198755
|
...jDi(s.outputs)
|
|
198756
198756
|
].reduce((c, e) => [...c, ...yr(e, p)], []);
|
|
198757
198757
|
if (sp.includes(s.type)) {
|
|
198758
|
-
const i =
|
|
198759
|
-
|
|
198760
|
-
|
|
198758
|
+
const i = [
|
|
198759
|
+
...PC(
|
|
198760
|
+
s.inputs
|
|
198761
|
+
)
|
|
198762
|
+
], a = ct(s).reduce(
|
|
198761
198763
|
(c, e) => {
|
|
198762
198764
|
const f = ht(e);
|
|
198763
198765
|
return [
|
|
@@ -198770,7 +198772,7 @@ function yr(s, p = /* @__PURE__ */ new Set()) {
|
|
|
198770
198772
|
},
|
|
198771
198773
|
[]
|
|
198772
198774
|
);
|
|
198773
|
-
return i.push(...a), i.reduce((c, e) => [...c, ...yr(e
|
|
198775
|
+
return i.push(...a), i.reduce((c, e) => [...c, ...yr(e)], []);
|
|
198774
198776
|
}
|
|
198775
198777
|
if (s.type === d.FunctionDeclaration) {
|
|
198776
198778
|
const i = [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@elyx-code/project-logic-tree",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6929",
|
|
4
4
|
"author": "Sergio Herrero",
|
|
5
5
|
"license": "UNLICENSED",
|
|
6
6
|
"description": "An installable module which contains the type definitions and ephemeral state management for a projects' logic tree data structure",
|