@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 +2 -2
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/cjs/src/runtime/LocalGraphRunner.d.ts +3 -1
- package/lib/cjs/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/lib/esm/index.js +2 -2
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/src/runtime/LocalGraphRunner.d.ts +3 -1
- package/lib/esm/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/package.json +4 -4
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
|
}
|