@bian-womp/spark-workbench 0.3.24 → 0.3.25

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/lib/cjs/index.cjs CHANGED
@@ -1166,9 +1166,9 @@ class LocalGraphRunner extends AbstractGraphRunner {
1166
1166
  console.info(`[LocalGraphRunner] Created runner with ID: ${this.runnerId}`);
1167
1167
  this.emit("transport", { runnerId: this.runnerId, state: "local" });
1168
1168
  }
1169
- build(def) {
1169
+ build(def, opts) {
1170
1170
  const builder = new sparkGraph.GraphBuilder(this.registry);
1171
- this.runtime = builder.build(def);
1171
+ this.runtime = builder.build(def, opts);
1172
1172
  // Signal UI that freshly built graph should be considered invalidated
1173
1173
  this.emit("invalidate", { reason: "graph-built" });
1174
1174
  }