@unlaxer/tramli 1.5.1 → 1.5.2

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.
@@ -69,7 +69,7 @@ export class FlowDefinition {
69
69
  errorTransitions: new Map(this.errorTransitions),
70
70
  initialState: this.initialState,
71
71
  terminalStates: this.terminalStates,
72
- dataFlowGraph: null, // will be rebuilt if needed
72
+ dataFlowGraph: this.dataFlowGraph, // reuse parent's graph
73
73
  });
74
74
  return result;
75
75
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@unlaxer/tramli",
3
- "version": "1.5.1",
3
+ "version": "1.5.2",
4
4
  "description": "Constrained flow engine — state machines that prevent invalid transitions at build time",
5
5
  "type": "module",
6
6
  "exports": {