We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents aaa3368 + e72b73f commit edc3eedCopy full SHA for edc3eed
js/workflows/workflow.js
@@ -215,7 +215,9 @@ class Workflow {
215
} else {
216
path = path.slice(1, -3);
217
path = path.replace(/\//g, ".");
218
- await (this.repl.runCode("import " + path));
+ this.repl.writeToTerminal("\r\nRunning 'import " + path + "'...\r\n");
219
+ this.repl.writeToTerminal(await (this.repl.runCode("import " + path)));
220
+ this.repl.writeToTerminal("\r\nCode done running.\r\n");
221
}
222
223
0 commit comments