@rkmodules/rules 0.0.74 → 0.0.75
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.js +4 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -1
- package/dist/index.esm.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs.js
CHANGED
|
@@ -1783,7 +1783,10 @@ var Engine = /** @class */ (function () {
|
|
|
1783
1783
|
return node;
|
|
1784
1784
|
}
|
|
1785
1785
|
var _a = node.body, body = _a === void 0 ? {} : _a, props = __rest(node, ["body"]);
|
|
1786
|
-
var primitive = __assign(__assign({}, props), { outputs: {}
|
|
1786
|
+
var primitive = __assign(__assign({}, props), { outputs: Object.fromEntries(Object.entries(node.outputs || {}).map(function (_a) {
|
|
1787
|
+
var _b = __read(_a, 2), key = _b[0]; _b[1];
|
|
1788
|
+
return [key, { type: "any" }];
|
|
1789
|
+
})), mount: function (trigger) {
|
|
1787
1790
|
// mount all the nodes
|
|
1788
1791
|
var unsubs = [];
|
|
1789
1792
|
Object.values(body).forEach(function (n) {
|