@bian-womp/spark-workbench 0.3.86 → 0.3.87
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 +4 -4
- package/lib/cjs/index.cjs.map +1 -1
- package/lib/cjs/src/runtime/AbstractGraphRunner.d.ts +1 -3
- package/lib/cjs/src/runtime/AbstractGraphRunner.d.ts.map +1 -1
- package/lib/cjs/src/runtime/IGraphRunner.d.ts +1 -3
- package/lib/cjs/src/runtime/IGraphRunner.d.ts.map +1 -1
- package/lib/cjs/src/runtime/LocalGraphRunner.d.ts +1 -3
- package/lib/cjs/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/lib/cjs/src/runtime/RemoteGraphRunner.d.ts +1 -3
- package/lib/cjs/src/runtime/RemoteGraphRunner.d.ts.map +1 -1
- package/lib/esm/index.js +4 -4
- package/lib/esm/index.js.map +1 -1
- package/lib/esm/src/runtime/AbstractGraphRunner.d.ts +1 -3
- package/lib/esm/src/runtime/AbstractGraphRunner.d.ts.map +1 -1
- package/lib/esm/src/runtime/IGraphRunner.d.ts +1 -3
- package/lib/esm/src/runtime/IGraphRunner.d.ts.map +1 -1
- package/lib/esm/src/runtime/LocalGraphRunner.d.ts +1 -3
- package/lib/esm/src/runtime/LocalGraphRunner.d.ts.map +1 -1
- package/lib/esm/src/runtime/RemoteGraphRunner.d.ts +1 -3
- package/lib/esm/src/runtime/RemoteGraphRunner.d.ts.map +1 -1
- package/package.json +4 -4
package/lib/cjs/index.cjs
CHANGED
|
@@ -1357,9 +1357,9 @@ class LocalGraphRunner extends AbstractGraphRunner {
|
|
|
1357
1357
|
this.engine.setInputs(nodeId, map);
|
|
1358
1358
|
}
|
|
1359
1359
|
}
|
|
1360
|
-
async computeNode(nodeId
|
|
1360
|
+
async computeNode(nodeId) {
|
|
1361
1361
|
if (this.engine)
|
|
1362
|
-
await this.engine.computeNode(nodeId
|
|
1362
|
+
await this.engine.computeNode(nodeId);
|
|
1363
1363
|
}
|
|
1364
1364
|
async runFromHere(nodeId) {
|
|
1365
1365
|
if (this.engine)
|
|
@@ -1970,9 +1970,9 @@ class RemoteGraphRunner extends AbstractGraphRunner {
|
|
|
1970
1970
|
this.emit("status", { running: true, runMode });
|
|
1971
1971
|
}
|
|
1972
1972
|
}
|
|
1973
|
-
async computeNode(nodeId
|
|
1973
|
+
async computeNode(nodeId) {
|
|
1974
1974
|
const client = await this.ensureClient();
|
|
1975
|
-
await client.engine.computeNode(nodeId
|
|
1975
|
+
await client.engine.computeNode(nodeId);
|
|
1976
1976
|
}
|
|
1977
1977
|
async runFromHere(nodeId) {
|
|
1978
1978
|
const client = await this.ensureClient();
|