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.
1 parent 1422bc0 commit 6630338Copy full SHA for 6630338
compile.js
@@ -4,7 +4,9 @@ qx.Class.define("qxl.demobrowser.compile.LibraryApi", {
4
members: {
5
async load() {
6
let command = this.getCompilerApi().getCommand();
7
- command.addListener("writtenApplication", (e) => this.__appCompiling(e.getData()));
+ if (command instanceof qx.tool.cli.commands.Compile) {
8
+ command.addListener("writtenApplication", (e) => this.__appCompiling(e.getData()));
9
+ }
10
},
11
12
__appCompiling(application) {
0 commit comments