@qooxdoo/framework 7.3.3 → 7.4.0

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.
@@ -96,7 +96,7 @@ if (typeof global !== "undefined") {
96
96
  "qx.application": "qx.tool.cli.Application",
97
97
  "qx.revision": "",
98
98
  "qx.theme": "qx.theme.Simple",
99
- "qx.version": "7.3.3",
99
+ "qx.version": "7.4.0",
100
100
  "qx.compiler.targetType": "source",
101
101
  "qx.compiler.outputDir": "compiled/node/build/",
102
102
  "true": true,
@@ -128,7 +128,7 @@ if (typeof global !== "undefined") {
128
128
  "qx.promise.warnings": true,
129
129
  "qx.promise.longStackTraces": true,
130
130
  "qx.compiler": true,
131
- "qx.compiler.version": "7.3.3",
131
+ "qx.compiler.version": "7.4.0",
132
132
  "qx.headless": true,
133
133
  "qx.compiler.applicationType": "node",
134
134
  "qx.compiler.applicationName": "compiler"
@@ -35509,7 +35509,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35509
35509
  });
35510
35510
  }
35511
35511
 
35512
- config.targetType = parsedArgs.target || config.defaultTarget || "source";
35512
+ let targetType = this._compilerApi.getCommand().getTargetType();
35513
35513
 
35514
35514
  if (!config.locales) {
35515
35515
  config.locales = [];
@@ -35527,7 +35527,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
35527
35527
 
35528
35528
 
35529
35529
  if (config.targets) {
35530
- const target = config.targets.find(target => target.type === config.targetType);
35530
+ const target = config.targets.find(target => target.type === targetType);
35531
35531
  target.environment = target.environment || {};
35532
35532
  qx.lang.Object.mergeWith(target.environment, parsedArgs.environment, true);
35533
35533
  }
@@ -36534,7 +36534,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
36534
36534
  * @return {String}
36535
36535
  */
36536
36536
  getCompilerVersion() {
36537
- return "7.3.3";
36537
+ return "7.4.0";
36538
36538
  },
36539
36539
 
36540
36540
  /**
@@ -37412,6 +37412,14 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
37412
37412
  } catch (e) {
37413
37413
  throw new qx.tool.utils.Utils.UserError(e.message);
37414
37414
  }
37415
+ },
37416
+
37417
+ /**
37418
+ * Returns the calculated target type
37419
+ * @returns {String}
37420
+ */
37421
+ getTargetType() {
37422
+ return this.argv.target || this.getCompilerApi().getConfiguration().defaultTarget || "source";
37415
37423
  }
37416
37424
 
37417
37425
  }
@@ -39094,6 +39102,12 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
39094
39102
  const child_process = require("child_process");
39095
39103
 
39096
39104
  const psTree = require("ps-tree");
39105
+ /**
39106
+ * @ignore(process)
39107
+ */
39108
+
39109
+ /* global process */
39110
+
39097
39111
  /**
39098
39112
  * Utility methods
39099
39113
  */
@@ -45245,6 +45259,16 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45245
45259
  if (dir && !dirs.includes(dir)) {
45246
45260
  dirs.push(dir);
45247
45261
  }
45262
+
45263
+ let localModules = application.getLocalModules();
45264
+
45265
+ for (let requireName in localModules) {
45266
+ let dir = localModules[requireName];
45267
+
45268
+ if (dir && !dirs.includes(dir)) {
45269
+ dirs.push(dir);
45270
+ }
45271
+ }
45248
45272
  });
45249
45273
 
45250
45274
  if (this.isDebug()) {
@@ -45345,12 +45369,19 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45345
45369
  data.dependsOn = {};
45346
45370
  var deps = data.application.getDependencies();
45347
45371
  deps.forEach(function (classname) {
45348
- var info = db.classInfo[classname];
45349
- var lib = analyser.findLibrary(info.libraryName);
45350
- var parts = [lib.getRootDir(), lib.getSourcePath()].concat(classname.split("."));
45351
- var filename = path.resolve.apply(path, parts) + ".js";
45372
+ let info = db.classInfo[classname];
45373
+ let lib = analyser.findLibrary(info.libraryName);
45374
+ let parts = [lib.getRootDir(), lib.getSourcePath()].concat(classname.split("."));
45375
+ let filename = path.resolve.apply(path, parts) + ".js";
45352
45376
  data.dependsOn[filename] = true;
45353
45377
  });
45378
+ let localModules = data.application.getLocalModules();
45379
+
45380
+ for (let requireName in localModules) {
45381
+ let filename = path.resolve(localModules[requireName]);
45382
+ data.dependsOn[filename] = true;
45383
+ }
45384
+
45354
45385
  var filename = path.resolve(data.application.getLoaderTemplate());
45355
45386
  promises.push(qx.tool.utils.files.Utils.correctCase(filename).then(filename => data.dependsOn[filename] = true));
45356
45387
  });
@@ -45842,7 +45873,6 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
45842
45873
  "qx.tool.compiler.Console": {
45843
45874
  "defer": "runtime"
45844
45875
  },
45845
- "qx.tool.cli.Cli": {},
45846
45876
  "qx.tool.utils.Utils": {},
45847
45877
  "qx.Promise": {},
45848
45878
  "qx.tool.utils.files.Utils": {},
@@ -46177,8 +46207,7 @@ Version: v${await qx.tool.config.Utils.getQxVersion()}
46177
46207
  __P_8_0: null,
46178
46208
  __P_8_1: null,
46179
46209
  __P_8_2: null,
46180
- __P_8_3: null,
46181
- __P_8_4: false,
46210
+ __P_8_3: false,
46182
46211
 
46183
46212
  /*
46184
46213
  * @Override
@@ -46281,7 +46310,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46281
46310
  this.addListener("writtenApplications", e => {
46282
46311
  if (this.argv.verbose) {
46283
46312
  qx.tool.compiler.Console.log("\nCompleted all applications, libraries used are:");
46284
- Object.values(this.__P_8_3).forEach(lib => qx.tool.compiler.Console.log(` ${lib.getNamespace()} (${lib.getRootDir()})`));
46313
+ Object.values(this.__P_8_2).forEach(lib => qx.tool.compiler.Console.log(` ${lib.getNamespace()} (${lib.getRootDir()})`));
46285
46314
  }
46286
46315
  });
46287
46316
  await this._loadConfigAndStartMaking();
@@ -46295,7 +46324,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46295
46324
  success = false;
46296
46325
  }
46297
46326
 
46298
- if (!this.argv.deploying && !this.argv["machine-readable"] && this.argv["feedback"] && this.__P_8_4 && this.argv.target === "build") {
46327
+ if (!this.argv.deploying && !this.argv["machine-readable"] && this.argv["feedback"] && this.__P_8_3 && this.argv.target === "build") {
46299
46328
  qx.tool.compiler.Console.warn(" *******************************************************************************************\n ** **\n ** Your compilation will include temporary files that are only necessary during **\n ** development; these files speed up the compilation, but take up space that you would **\n ** probably not want to put on a production server. **\n ** **\n ** When you are ready to deploy, try running `qx deploy` to get a minimised version **\n ** **\n *******************************************************************************************");
46300
46329
  }
46301
46330
 
@@ -46309,12 +46338,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46309
46338
  * @return {Boolean} true if all makers succeeded
46310
46339
  */
46311
46340
  async _loadConfigAndStartMaking() {
46312
- var config = this.__P_8_2 = await qx.tool.cli.Cli.getInstance().getParsedArgs();
46313
-
46314
- if (!config) {
46315
- throw new qx.tool.utils.Utils.UserError("Error: Cannot find any configuration");
46316
- }
46317
-
46341
+ var config = this.getCompilerApi().getConfiguration();
46318
46342
  var makers = this.__P_8_1 = await this.createMakersFromConfig(config);
46319
46343
 
46320
46344
  if (!makers || !makers.length) {
@@ -46335,7 +46359,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46335
46359
  analyser.setWritePoLineNumbers(cfg.db("qx.translation.strictPoCompatibility", false));
46336
46360
 
46337
46361
  if (!(await fs.existsAsync(maker.getOutputDir()))) {
46338
- this.__P_8_4 = true;
46362
+ this.__P_8_3 = true;
46339
46363
  }
46340
46364
 
46341
46365
  if (this.argv["clean"]) {
@@ -46491,7 +46515,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46491
46515
  let targetConfigs = [];
46492
46516
  let defaultTargetConfig = null;
46493
46517
  data.targets.forEach(targetConfig => {
46494
- if (targetConfig.type === data.targetType) {
46518
+ if (targetConfig.type === this.getTargetType()) {
46495
46519
  if (!targetConfig["application-names"] && !targetConfig["application-types"]) {
46496
46520
  if (defaultTargetConfig) {
46497
46521
  qx.tool.compiler.Console.print("qx.tool.cli.compile.multipleDefaultTargets");
@@ -46564,7 +46588,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46564
46588
  targetConfigs.push(defaultTargetConfig);
46565
46589
  }
46566
46590
 
46567
- let libraries = this.__P_8_3 = {};
46591
+ let libraries = this.__P_8_2 = {};
46568
46592
  await qx.Promise.all(data.libraries.map(async libPath => {
46569
46593
  var library = await qx.tool.compiler.app.Library.createLibrary(libPath);
46570
46594
  libraries[library.getNamespace()] = library;
@@ -46583,7 +46607,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46583
46607
  Console.log("Qooxdoo found in " + qxLib.getRootDir());
46584
46608
  }
46585
46609
 
46586
- let errors = await this.__P_8_5(Object.values(libraries), data.packages);
46610
+ let errors = await this.__P_8_4(Object.values(libraries), data.packages);
46587
46611
 
46588
46612
  if (errors.length > 0) {
46589
46613
  if (this.argv.warnAsError) {
@@ -46913,7 +46937,10 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
46913
46937
  app.setDescription(appConfig.description);
46914
46938
  }
46915
46939
 
46916
- if (appConfig.localModules) {
46940
+ appConfig.localModules = appConfig.localModules || {};
46941
+ qx.lang.Object.mergeWith(appConfig.localModules, data.localModules || {}, false);
46942
+
46943
+ if (!qx.lang.Object.isEmpty(appConfig.localModules)) {
46917
46944
  app.setLocalModules(appConfig.localModules);
46918
46945
  }
46919
46946
 
@@ -47015,7 +47042,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
47015
47042
  * @return {Promise<Array>} Array of error messages
47016
47043
  * @private
47017
47044
  */
47018
- async __P_8_5(libs, packages) {
47045
+ async __P_8_4(libs, packages) {
47019
47046
  const Console = qx.tool.compiler.Console.getInstance();
47020
47047
  let errors = []; // check all requires
47021
47048
 
@@ -47215,20 +47242,13 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
47215
47242
  });
47216
47243
  },
47217
47244
 
47218
- /**
47219
- * Returns the configuration object being compiled
47220
- */
47221
- _getConfig() {
47222
- return this.__P_8_2;
47223
- },
47224
-
47225
47245
  /**
47226
47246
  * Returns a list of libraries which are used
47227
47247
  *
47228
47248
  * @return {Library[]}
47229
47249
  */
47230
47250
  getLibraries() {
47231
- return this.__P_8_3;
47251
+ return this.__P_8_2;
47232
47252
  }
47233
47253
 
47234
47254
  },
@@ -49621,6 +49641,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
49621
49641
  "qx.tool.compiler.ClassFile": {},
49622
49642
  "qx.tool.config.Utils": {},
49623
49643
  "qx.tool.utils.Utils": {},
49644
+ "qx.tool.utils.files.Utils": {},
49624
49645
  "qx.tool.compiler.Console": {},
49625
49646
  "qx.tool.compiler.targets.TypeScriptWriter": {}
49626
49647
  }
@@ -49813,19 +49834,27 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
49813
49834
  // multiple times
49814
49835
 
49815
49836
  let compiledClasses = this.getRecentlyCompiledClasses(true);
49816
-
49817
- var appsThisTime = this.__P_32_0.filter(app => {
49837
+ let db = analyser.getDatabase();
49838
+ var appsThisTime = await this.__P_32_0.filter(async app => {
49818
49839
  let loadDeps = app.getDependencies();
49819
49840
 
49820
49841
  if (!loadDeps || !loadDeps.length) {
49821
49842
  return true;
49822
49843
  }
49823
49844
 
49824
- return loadDeps.some(name => Boolean(compiledClasses[name]));
49825
- });
49845
+ let res = loadDeps.some(name => Boolean(compiledClasses[name]));
49846
+ let localModules = app.getLocalModules();
49847
+
49848
+ for (let requireName in localModules) {
49849
+ var _db$modulesInfo;
49850
+
49851
+ let stat = await qx.tool.utils.files.Utils.safeStat(localModules[requireName]);
49852
+ res || (res = stat.mtime.getTime() > ((db === null || db === void 0 ? void 0 : (_db$modulesInfo = db.modulesInfo) === null || _db$modulesInfo === void 0 ? void 0 : _db$modulesInfo.localModules[requireName]) || 0));
49853
+ }
49826
49854
 
49855
+ return res;
49856
+ });
49827
49857
  let allAppInfos = [];
49828
- let db = analyser.getDatabase();
49829
49858
 
49830
49859
  for (let i = 0; i < appsThisTime.length; i++) {
49831
49860
  let application = appsThisTime[i];
@@ -55026,9 +55055,6 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55026
55055
  (function () {
55027
55056
  var $$dbClassInfo = {
55028
55057
  "dependsOn": {
55029
- "qx.tool.utils.Promisify": {
55030
- "require": true
55031
- },
55032
55058
  "qx.Class": {
55033
55059
  "usage": "dynamic",
55034
55060
  "require": true
@@ -55037,6 +55063,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55037
55063
  "construct": true,
55038
55064
  "require": true
55039
55065
  },
55066
+ "qx.tool.utils.files.Utils": {},
55040
55067
  "qx.tool.compiler.Console": {}
55041
55068
  }
55042
55069
  };
@@ -55063,9 +55090,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55063
55090
  * * Derrell Lipman (@derrell)
55064
55091
  *
55065
55092
  * ************************************************************************/
55066
- const fs = qx.tool.utils.Promisify.fs;
55067
-
55068
- const path = require("upath");
55093
+ const hash = require("object-hash");
55069
55094
  /**
55070
55095
  *
55071
55096
  */
@@ -55076,60 +55101,113 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55076
55101
 
55077
55102
  construct(appMeta) {
55078
55103
  qx.tool.compiler.targets.meta.AbstractJavascriptMeta.constructor.call(this, appMeta, `${appMeta.getApplicationRoot()}commonjs-browserify.js`);
55079
- this.__P_44_0 = appMeta;
55104
+ this.__P_44_0 = [];
55105
+ this.__P_44_1 = {};
55080
55106
  this.setNeedsWriteToDisk(true);
55081
55107
  },
55082
55108
 
55083
55109
  members: {
55084
55110
  __P_44_0: null,
55111
+ __P_44_1: null,
55085
55112
 
55086
- /**
55087
- * @Override
55088
- */
55089
- async writeSourceCodeToStream(ws) {
55090
- let hasCommonjsModules = false;
55113
+ __P_44_2() {
55091
55114
  let commonjsModules = new Set();
55092
55115
  let references = {};
55093
- const localModules = this.__P_44_0.getApplication().getLocalModules() || {};
55116
+ const db = this.getAppMeta().getAnalyser().getDatabase();
55117
+ const localModules = this.getAppMeta().getApplication().getLocalModules() || {}; // Get a Set of unique `require`d CommonJS module names from
55118
+ // all classes
55094
55119
 
55095
- const db = this.__P_44_0.getAnalyser().getDatabase(); // Only include discovered `require()`d Node modules if the
55096
- // target application type is browser.
55120
+ for (let className in db.classInfo) {
55121
+ let classInfo = db.classInfo[className];
55097
55122
 
55123
+ if (classInfo.commonjsModules) {
55124
+ Object.keys(classInfo.commonjsModules).forEach(moduleName => {
55125
+ // Ignore this found `require()` if its a local modules
55126
+ if (!(moduleName in localModules)) {
55127
+ // Add this module name to the set of module names
55128
+ commonjsModules.add(moduleName);
55129
+ } // Add the list of references from which this module was require()d
55098
55130
 
55099
- if (this.__P_44_0.getEnvironmentValue("qx.compiler.applicationType") == "browser") {
55100
- // Get a Set of unique `require`d CommonJS module names from classes needed by the application
55101
- let classnames = this.__P_44_0.getApplication().getDependencies();
55102
55131
 
55103
- for (let className of classnames) {
55104
- let classInfo = db.classInfo[className];
55132
+ if (!references[moduleName]) {
55133
+ references[moduleName] = new Set();
55134
+ }
55105
55135
 
55106
- if (classInfo.commonjsModules) {
55107
- Object.keys(classInfo.commonjsModules).forEach(moduleName => {
55108
- // Ignore this found `require()` if its a local modules
55109
- if (moduleName in localModules) {
55110
- return;
55111
- } // Add this module name to the set of module names
55136
+ references[moduleName].add([...classInfo.commonjsModules[moduleName]]);
55137
+ });
55138
+ }
55139
+ }
55112
55140
 
55141
+ return {
55142
+ commonjsModules: [...commonjsModules],
55143
+ references: references
55144
+ };
55145
+ },
55113
55146
 
55114
- commonjsModules.add(moduleName); // Add the list of references from which this module was require()d
55147
+ /**
55148
+ * @Override
55149
+ */
55150
+ async writeToDisk() {
55151
+ var _db$modulesInfo2;
55115
55152
 
55116
- if (!references[moduleName]) {
55117
- references[moduleName] = new Set();
55118
- }
55153
+ const localModules = this.getAppMeta().getApplication().getLocalModules();
55154
+ let db = this.getAppMeta().getAnalyser().getDatabase();
55119
55155
 
55120
- references[moduleName].add([...classInfo.commonjsModules[moduleName]]); // There is at least one module
55156
+ const {
55157
+ commonjsModules,
55158
+ references
55159
+ } = this.__P_44_2();
55121
55160
 
55122
- hasCommonjsModules = true;
55123
- });
55124
- }
55161
+ let modules = [];
55162
+ let modulesInfo = {};
55163
+ let doIt = !!!(await qx.tool.utils.files.Utils.safeStat(this.getFilename())); // Include any dynamically determined `require()`d modules
55164
+
55165
+ if (commonjsModules.length > 0) {
55166
+ modules.push(commonjsModules);
55167
+ } // Include any local modules specified for the application
55168
+ // in compile.json
55169
+
55170
+
55171
+ if (localModules) {
55172
+ modulesInfo.localModules = {};
55173
+
55174
+ for (let requireName in localModules) {
55175
+ var _db$modulesInfo;
55176
+
55177
+ modules.push(requireName);
55178
+ let stat = await qx.tool.utils.files.Utils.safeStat(localModules[requireName]);
55179
+ modulesInfo.localModules[requireName] = stat.mtime.getTime();
55180
+ doIt || (doIt = modulesInfo.localModules[requireName] > ((db === null || db === void 0 ? void 0 : (_db$modulesInfo = db.modulesInfo) === null || _db$modulesInfo === void 0 ? void 0 : _db$modulesInfo.localModules[requireName]) || 0));
55125
55181
  }
55126
- } // If there are any CommonJS modules required to be bundled, or
55182
+ }
55183
+
55184
+ modulesInfo.modulesHash = hash(modules);
55185
+ doIt || (doIt = modulesInfo.modulesHash !== ((db === null || db === void 0 ? void 0 : (_db$modulesInfo2 = db.modulesInfo) === null || _db$modulesInfo2 === void 0 ? void 0 : _db$modulesInfo2.modulesHash) || ""));
55186
+
55187
+ if (doIt) {
55188
+ db.modulesInfo = modulesInfo;
55189
+ await this.getAppMeta().getAnalyser().saveDatabase();
55190
+ this.__P_44_0 = commonjsModules;
55191
+ this.__P_44_1 = references;
55192
+ }
55193
+
55194
+ this.setNeedsWriteToDisk(doIt);
55195
+ return qx.tool.compiler.targets.meta.Browserify.superclass.prototype.writeToDisk.call(this);
55196
+ },
55197
+
55198
+ /**
55199
+ * @Override
55200
+ */
55201
+ async writeSourceCodeToStream(ws) {
55202
+ // If there are any CommonJS modules required to be bundled, or
55127
55203
  // any local modules specified for the application in
55128
55204
  // compile.json, browserify them
55205
+ if (this.getAppMeta().getEnvironmentValue("qx.compiler.applicationType") == "browser") {
55206
+ const localModules = this.getAppMeta().getApplication().getLocalModules();
55129
55207
 
55130
-
55131
- if (hasCommonjsModules || localModules) {
55132
- await this.__P_44_1(commonjsModules, references, localModules, ws);
55208
+ if (this.__P_44_0 || localModules) {
55209
+ await this.__P_44_3(this.__P_44_0, this.__P_44_1, localModules, ws);
55210
+ }
55133
55211
  }
55134
55212
 
55135
55213
  await new Promise(resolve => {
@@ -55137,7 +55215,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55137
55215
  });
55138
55216
  },
55139
55217
 
55140
- async __P_44_1(commonjsModules, references, localModules, ws) {
55218
+ async __P_44_3(commonjsModules, references, localModules, ws) {
55141
55219
  const babelify = require("babelify");
55142
55220
 
55143
55221
  const preset = require("@babel/preset-env");
@@ -55148,10 +55226,8 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55148
55226
  // Make them equivalent.
55149
55227
 
55150
55228
 
55151
- builtins.process = builtins._process; // Convert the Set of CommonJS module names to an array
55152
-
55153
- commonjsModules = [...commonjsModules];
55154
- return new Promise(resolve => {
55229
+ builtins.process = builtins._process;
55230
+ return new Promise(async resolve => {
55155
55231
  let b = browserify([], {
55156
55232
  builtins: builtins,
55157
55233
  ignoreMissing: true,
@@ -55162,19 +55238,16 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
55162
55238
  b._mdeps.on("missing", (id, parent) => {
55163
55239
  let message = [];
55164
55240
  message.push(`ERROR: could not locate require()d module: "${id}"`);
55241
+ message.push(" required from:");
55165
55242
 
55166
- if (references[id]) {
55167
- message.push(" required from:");
55168
-
55169
- try {
55170
- [...references[id]].forEach(refs => {
55171
- refs.forEach(ref => {
55172
- message.push(` ${ref}`);
55173
- });
55243
+ try {
55244
+ [...references[id]].forEach(refs => {
55245
+ refs.forEach(ref => {
55246
+ message.push(` ${ref}`);
55174
55247
  });
55175
- } catch (e) {
55176
- message.push(` <compile.json:application.localModules'>`);
55177
- }
55248
+ });
55249
+ } catch (e) {
55250
+ message.push(` <compile.json:application.localModules'>`);
55178
55251
  }
55179
55252
 
55180
55253
  qx.tool.compiler.Console.error(message.join("\n"));
@@ -63404,8 +63477,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63404
63477
  this.argv["machine-readable"] = false;
63405
63478
  this.argv["feedback"] = false;
63406
63479
  await qx.tool.cli.commands.Run.superclass.prototype.process.call(this);
63407
-
63408
- let config = this._getConfig();
63480
+ let config = this.getCompilerApi().getConfiguration();
63409
63481
 
63410
63482
  if (!config.run) {
63411
63483
  qx.tool.compiler.Console.print("qx.tool.cli.run.noRunConfig");
@@ -63699,8 +63771,7 @@ Framework: v${await this.getQxVersion()} in ${await this.getQxPath()}`);
63699
63771
  this.__P_14_0 = defaultMaker === null;
63700
63772
  }
63701
63773
 
63702
- var config = this._getConfig();
63703
-
63774
+ let config = this.getCompilerApi().getConfiguration();
63704
63775
  const app = express();
63705
63776
  app.use((req, res, next) => {
63706
63777
  res.set({
@@ -72118,37 +72189,25 @@ qx.$$packageData['0'] = {
72118
72189
  "gif",
72119
72190
  "qx"
72120
72191
  ],
72121
- "qx/decoration/Simple/arrows/forward.gif": [
72122
- 8,
72123
- 7,
72124
- "gif",
72125
- "qx"
72126
- ],
72127
72192
  "qx/decoration/Simple/arrows/down.gif": [
72128
72193
  7,
72129
72194
  4,
72130
72195
  "gif",
72131
72196
  "qx"
72132
72197
  ],
72133
- "qx/decoration/Simple/arrows/left.gif": [
72134
- 4,
72135
- 7,
72136
- "gif",
72137
- "qx"
72138
- ],
72139
72198
  "qx/decoration/Simple/arrows/left-invert.gif": [
72140
72199
  4,
72141
72200
  7,
72142
72201
  "gif",
72143
72202
  "qx"
72144
72203
  ],
72145
- "qx/decoration/Simple/arrows/rewind.gif": [
72204
+ "qx/decoration/Simple/arrows/forward.gif": [
72146
72205
  8,
72147
72206
  7,
72148
72207
  "gif",
72149
72208
  "qx"
72150
72209
  ],
72151
- "qx/decoration/Simple/arrows/right.gif": [
72210
+ "qx/decoration/Simple/arrows/left.gif": [
72152
72211
  4,
72153
72212
  7,
72154
72213
  "gif",
@@ -72160,99 +72219,111 @@ qx.$$packageData['0'] = {
72160
72219
  "gif",
72161
72220
  "qx"
72162
72221
  ],
72222
+ "qx/decoration/Simple/arrows/rewind.gif": [
72223
+ 8,
72224
+ 7,
72225
+ "gif",
72226
+ "qx"
72227
+ ],
72163
72228
  "qx/decoration/Simple/arrows/up-invert.gif": [
72164
72229
  7,
72165
72230
  4,
72166
72231
  "gif",
72167
72232
  "qx"
72168
72233
  ],
72234
+ "qx/decoration/Simple/arrows/right.gif": [
72235
+ 4,
72236
+ 7,
72237
+ "gif",
72238
+ "qx"
72239
+ ],
72169
72240
  "qx/decoration/Simple/arrows/up-small.gif": [
72170
72241
  5,
72171
72242
  3,
72172
72243
  "gif",
72173
72244
  "qx"
72174
72245
  ],
72246
+ "qx/decoration/Simple/colorselector/brightness-field.png": [
72247
+ 19,
72248
+ 256,
72249
+ "png",
72250
+ "qx"
72251
+ ],
72175
72252
  "qx/decoration/Simple/arrows/up.gif": [
72176
72253
  7,
72177
72254
  4,
72178
72255
  "gif",
72179
72256
  "qx"
72180
72257
  ],
72181
- "qx/decoration/Simple/cursors/alias.gif": [
72182
- 19,
72183
- 15,
72184
- "gif",
72185
- "qx"
72186
- ],
72187
- "qx/decoration/Simple/cursors/move.gif": [
72188
- 13,
72189
- 9,
72258
+ "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72259
+ 35,
72260
+ 11,
72190
72261
  "gif",
72191
72262
  "qx"
72192
72263
  ],
72193
- "qx/decoration/Simple/cursors/copy.gif": [
72194
- 19,
72195
- 15,
72196
- "gif",
72264
+ "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72265
+ 256,
72266
+ 256,
72267
+ "jpg",
72197
72268
  "qx"
72198
72269
  ],
72199
- "qx/decoration/Simple/cursors/nodrop.gif": [
72200
- 20,
72201
- 20,
72270
+ "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72271
+ 11,
72272
+ 11,
72202
72273
  "gif",
72203
72274
  "qx"
72204
72275
  ],
72205
- "qx/decoration/Simple/checkbox/checked.png": [
72276
+ "qx/decoration/Simple/checkbox/checked-disabled.png": [
72206
72277
  6,
72207
72278
  6,
72208
72279
  "png",
72209
72280
  "qx"
72210
72281
  ],
72211
- "qx/decoration/Simple/checkbox/checked-disabled.png": [
72212
- 6,
72282
+ "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72213
72283
  6,
72284
+ 2,
72214
72285
  "png",
72215
72286
  "qx"
72216
72287
  ],
72217
- "qx/decoration/Simple/checkbox/undetermined.png": [
72288
+ "qx/decoration/Simple/checkbox/checked.png": [
72289
+ 6,
72218
72290
  6,
72219
- 2,
72220
72291
  "png",
72221
72292
  "qx"
72222
72293
  ],
72223
- "qx/decoration/Simple/checkbox/undetermined-disabled.png": [
72294
+ "qx/decoration/Simple/checkbox/undetermined.png": [
72224
72295
  6,
72225
72296
  2,
72226
72297
  "png",
72227
72298
  "qx"
72228
72299
  ],
72229
- "qx/decoration/Simple/colorselector/brightness-field.png": [
72300
+ "qx/decoration/Simple/cursors/copy.gif": [
72230
72301
  19,
72231
- 256,
72232
- "png",
72302
+ 15,
72303
+ "gif",
72233
72304
  "qx"
72234
72305
  ],
72235
- "qx/decoration/Simple/colorselector/huesaturation-field.jpg": [
72236
- 256,
72237
- 256,
72238
- "jpg",
72306
+ "qx/decoration/Simple/cursors/nodrop.gif": [
72307
+ 20,
72308
+ 20,
72309
+ "gif",
72239
72310
  "qx"
72240
72311
  ],
72241
- "qx/decoration/Simple/colorselector/brightness-handle.gif": [
72242
- 35,
72243
- 11,
72312
+ "qx/decoration/Simple/cursors/alias.gif": [
72313
+ 19,
72314
+ 15,
72244
72315
  "gif",
72245
72316
  "qx"
72246
72317
  ],
72247
- "qx/decoration/Simple/menu/checkbox-invert.gif": [
72248
- 16,
72249
- 7,
72318
+ "qx/decoration/Simple/cursors/move.gif": [
72319
+ 13,
72320
+ 9,
72250
72321
  "gif",
72251
72322
  "qx"
72252
72323
  ],
72253
- "qx/decoration/Simple/colorselector/huesaturation-handle.gif": [
72254
- 11,
72255
- 11,
72324
+ "qx/decoration/Simple/menu/checkbox-invert.gif": [
72325
+ 16,
72326
+ 7,
72256
72327
  "gif",
72257
72328
  "qx"
72258
72329
  ],
@@ -72274,10 +72345,10 @@ qx.$$packageData['0'] = {
72274
72345
  "gif",
72275
72346
  "qx"
72276
72347
  ],
72277
- "qx/decoration/Simple/splitpane/knob-vertical.png": [
72278
- 8,
72279
- 1,
72280
- "png",
72348
+ "qx/decoration/Simple/tabview/close.gif": [
72349
+ 10,
72350
+ 9,
72351
+ "gif",
72281
72352
  "qx"
72282
72353
  ],
72283
72354
  "qx/decoration/Simple/splitpane/knob-horizontal.png": [
@@ -72292,9 +72363,9 @@ qx.$$packageData['0'] = {
72292
72363
  "png",
72293
72364
  "qx"
72294
72365
  ],
72295
- "qx/decoration/Simple/table/ascending-invert.png": [
72296
- 10,
72297
- 10,
72366
+ "qx/decoration/Simple/splitpane/knob-vertical.png": [
72367
+ 8,
72368
+ 1,
72298
72369
  "png",
72299
72370
  "qx"
72300
72371
  ],
@@ -72304,27 +72375,33 @@ qx.$$packageData['0'] = {
72304
72375
  "png",
72305
72376
  "qx"
72306
72377
  ],
72378
+ "qx/decoration/Simple/table/ascending-invert.png": [
72379
+ 10,
72380
+ 10,
72381
+ "png",
72382
+ "qx"
72383
+ ],
72307
72384
  "qx/decoration/Simple/table/boolean-true.png": [
72308
72385
  11,
72309
72386
  11,
72310
72387
  "png",
72311
72388
  "qx"
72312
72389
  ],
72313
- "qx/decoration/Simple/table/descending-invert.png": [
72390
+ "qx/decoration/Simple/table/descending.png": [
72314
72391
  10,
72315
72392
  10,
72316
72393
  "png",
72317
72394
  "qx"
72318
72395
  ],
72319
- "qx/decoration/Simple/table/select-column-order.png": [
72396
+ "qx/decoration/Simple/table/descending-invert.png": [
72397
+ 10,
72320
72398
  10,
72321
- 9,
72322
72399
  "png",
72323
72400
  "qx"
72324
72401
  ],
72325
- "qx/decoration/Simple/table/descending.png": [
72326
- 10,
72402
+ "qx/decoration/Simple/table/select-column-order.png": [
72327
72403
  10,
72404
+ 9,
72328
72405
  "png",
72329
72406
  "qx"
72330
72407
  ],
@@ -72334,13 +72411,13 @@ qx.$$packageData['0'] = {
72334
72411
  "gif",
72335
72412
  "qx"
72336
72413
  ],
72337
- "qx/decoration/Simple/tabview/close.gif": [
72338
- 10,
72339
- 9,
72414
+ "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72415
+ 19,
72416
+ 16,
72340
72417
  "gif",
72341
72418
  "qx"
72342
72419
  ],
72343
- "qx/decoration/Simple/treevirtual/cross_minus.gif": [
72420
+ "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72344
72421
  19,
72345
72422
  16,
72346
72423
  "gif",
@@ -72352,7 +72429,7 @@ qx.$$packageData['0'] = {
72352
72429
  "gif",
72353
72430
  "qx"
72354
72431
  ],
72355
- "qx/decoration/Simple/treevirtual/cross_plus.gif": [
72432
+ "qx/decoration/Simple/treevirtual/end_minus.gif": [
72356
72433
  19,
72357
72434
  16,
72358
72435
  "gif",
@@ -72364,19 +72441,19 @@ qx.$$packageData['0'] = {
72364
72441
  "gif",
72365
72442
  "qx"
72366
72443
  ],
72367
- "qx/decoration/Simple/treevirtual/end_minus.gif": [
72444
+ "qx/decoration/Simple/treevirtual/only_plus.gif": [
72368
72445
  19,
72369
72446
  16,
72370
72447
  "gif",
72371
72448
  "qx"
72372
72449
  ],
72373
- "qx/decoration/Simple/treevirtual/line.gif": [
72450
+ "qx/decoration/Simple/treevirtual/start.gif": [
72374
72451
  19,
72375
72452
  16,
72376
72453
  "gif",
72377
72454
  "qx"
72378
72455
  ],
72379
- "qx/decoration/Simple/treevirtual/only_plus.gif": [
72456
+ "qx/decoration/Simple/treevirtual/line.gif": [
72380
72457
  19,
72381
72458
  16,
72382
72459
  "gif",
@@ -72394,13 +72471,19 @@ qx.$$packageData['0'] = {
72394
72471
  "gif",
72395
72472
  "qx"
72396
72473
  ],
72397
- "qx/decoration/Simple/treevirtual/start.gif": [
72474
+ "qx/decoration/Simple/treevirtual/start_plus.gif": [
72398
72475
  19,
72399
72476
  16,
72400
72477
  "gif",
72401
72478
  "qx"
72402
72479
  ],
72403
- "qx/decoration/Simple/treevirtual/start_plus.gif": [
72480
+ "qx/decoration/Simple/tree/minus.gif": [
72481
+ 19,
72482
+ 16,
72483
+ "gif",
72484
+ "qx"
72485
+ ],
72486
+ "qx/decoration/Simple/tree/plus.gif": [
72404
72487
  19,
72405
72488
  16,
72406
72489
  "gif",
@@ -72454,18 +72537,6 @@ qx.$$packageData['0'] = {
72454
72537
  "gif",
72455
72538
  "qx"
72456
72539
  ],
72457
- "qx/decoration/Simple/tree/minus.gif": [
72458
- 19,
72459
- 16,
72460
- "gif",
72461
- "qx"
72462
- ],
72463
- "qx/decoration/Simple/tree/plus.gif": [
72464
- 19,
72465
- 16,
72466
- "gif",
72467
- "qx"
72468
- ],
72469
72540
  "qx/static/blank.png": [
72470
72541
  1,
72471
72542
  1,
@@ -72484,13 +72555,13 @@ qx.$$packageData['0'] = {
72484
72555
  "",
72485
72556
  "qx"
72486
72557
  ],
72487
- "qx/tool/bin/build-website": [
72558
+ "qx/tool/bin/download-assets": [
72488
72559
  null,
72489
72560
  null,
72490
72561
  "",
72491
72562
  "qx"
72492
72563
  ],
72493
- "qx/tool/bin/download-assets": [
72564
+ "qx/tool/bin/build-website": [
72494
72565
  null,
72495
72566
  null,
72496
72567
  "",
@@ -72538,25 +72609,19 @@ qx.$$packageData['0'] = {
72538
72609
  "txt",
72539
72610
  "qx"
72540
72611
  ],
72541
- "qx/tool/website/layouts/default.dot": [
72542
- null,
72543
- null,
72544
- "dot",
72545
- "qx"
72546
- ],
72547
72612
  "qx/tool/website/sass/qooxdoo.scss": [
72548
72613
  null,
72549
72614
  null,
72550
72615
  "scss",
72551
72616
  "qx"
72552
72617
  ],
72553
- "qx/tool/website/build/404.html": [
72618
+ "qx/tool/website/build/about.html": [
72554
72619
  null,
72555
72620
  null,
72556
72621
  "html",
72557
72622
  "qx"
72558
72623
  ],
72559
- "qx/tool/website/build/about.html": [
72624
+ "qx/tool/website/build/404.html": [
72560
72625
  null,
72561
72626
  null,
72562
72627
  "html",
@@ -72580,13 +72645,13 @@ qx.$$packageData['0'] = {
72580
72645
  "html",
72581
72646
  "qx"
72582
72647
  ],
72583
- "qx/tool/website/partials/head.html": [
72648
+ "qx/tool/website/partials/header.html": [
72584
72649
  null,
72585
72650
  null,
72586
72651
  "html",
72587
72652
  "qx"
72588
72653
  ],
72589
- "qx/tool/website/partials/header.html": [
72654
+ "qx/tool/website/partials/head.html": [
72590
72655
  null,
72591
72656
  null,
72592
72657
  "html",
@@ -72598,12 +72663,6 @@ qx.$$packageData['0'] = {
72598
72663
  "html",
72599
72664
  "qx"
72600
72665
  ],
72601
- "qx/tool/website/partials/icon-github.svg": [
72602
- 16,
72603
- 16,
72604
- "svg",
72605
- "qx"
72606
- ],
72607
72666
  "qx/tool/website/partials/icon-twitter.html": [
72608
72667
  null,
72609
72668
  null,
@@ -72616,6 +72675,18 @@ qx.$$packageData['0'] = {
72616
72675
  "svg",
72617
72676
  "qx"
72618
72677
  ],
72678
+ "qx/tool/website/partials/icon-github.svg": [
72679
+ 16,
72680
+ 16,
72681
+ "svg",
72682
+ "qx"
72683
+ ],
72684
+ "qx/tool/website/layouts/default.dot": [
72685
+ null,
72686
+ null,
72687
+ "dot",
72688
+ "qx"
72689
+ ],
72619
72690
  "qx/tool/website/src/404.html": [
72620
72691
  null,
72621
72692
  null,
@@ -72646,19 +72717,19 @@ qx.$$packageData['0'] = {
72646
72717
  "js",
72647
72718
  "qx"
72648
72719
  ],
72649
- "qx/tool/cli/templates/class/interface.tmpl.js": [
72720
+ "qx/tool/cli/templates/class/singleton.tmpl.js": [
72650
72721
  null,
72651
72722
  null,
72652
72723
  "js",
72653
72724
  "qx"
72654
72725
  ],
72655
- "qx/tool/cli/templates/class/mixin.tmpl.js": [
72726
+ "qx/tool/cli/templates/class/interface.tmpl.js": [
72656
72727
  null,
72657
72728
  null,
72658
72729
  "js",
72659
72730
  "qx"
72660
72731
  ],
72661
- "qx/tool/cli/templates/class/singleton.tmpl.js": [
72732
+ "qx/tool/cli/templates/class/mixin.tmpl.js": [
72662
72733
  null,
72663
72734
  null,
72664
72735
  "js",
@@ -72682,10 +72753,28 @@ qx.$$packageData['0'] = {
72682
72753
  "js",
72683
72754
  "qx"
72684
72755
  ],
72685
- "qx/tool/website/build/assets/abel.css": [
72756
+ "qx/tool/website/build/diagnostics/dependson.js": [
72686
72757
  null,
72687
72758
  null,
72688
- "css",
72759
+ "js",
72760
+ "qx"
72761
+ ],
72762
+ "qx/tool/website/build/diagnostics/dependson.html": [
72763
+ null,
72764
+ null,
72765
+ "html",
72766
+ "qx"
72767
+ ],
72768
+ "qx/tool/website/build/diagnostics/requiredby.html": [
72769
+ null,
72770
+ null,
72771
+ "html",
72772
+ "qx"
72773
+ ],
72774
+ "qx/tool/website/build/diagnostics/requiredby.js": [
72775
+ null,
72776
+ null,
72777
+ "js",
72689
72778
  "qx"
72690
72779
  ],
72691
72780
  "qx/tool/website/build/assets/bluebird.min.js": [
@@ -72694,6 +72783,12 @@ qx.$$packageData['0'] = {
72694
72783
  "js",
72695
72784
  "qx"
72696
72785
  ],
72786
+ "qx/tool/website/build/assets/abel.css": [
72787
+ null,
72788
+ null,
72789
+ "css",
72790
+ "qx"
72791
+ ],
72697
72792
  "qx/tool/website/build/assets/bootstrap.css": [
72698
72793
  null,
72699
72794
  null,
@@ -72724,22 +72819,22 @@ qx.$$packageData['0'] = {
72724
72819
  "png",
72725
72820
  "qx"
72726
72821
  ],
72727
- "qx/tool/website/build/assets/fontawesome-all.js": [
72822
+ "qx/tool/website/build/assets/jquery.js": [
72728
72823
  null,
72729
72824
  null,
72730
72825
  "js",
72731
72826
  "qx"
72732
72827
  ],
72733
- "qx/tool/website/build/assets/jquery.js": [
72828
+ "qx/tool/website/build/assets/fontawesome-all.js": [
72734
72829
  null,
72735
72830
  null,
72736
72831
  "js",
72737
72832
  "qx"
72738
72833
  ],
72739
- "qx/tool/website/build/assets/logo.svg": [
72740
- 512,
72741
- 145,
72742
- "svg",
72834
+ "qx/tool/website/build/assets/qx-ide.png": [
72835
+ 3183,
72836
+ 1752,
72837
+ "png",
72743
72838
  "qx"
72744
72839
  ],
72745
72840
  "qx/tool/website/build/assets/qx-api.png": [
@@ -72748,15 +72843,9 @@ qx.$$packageData['0'] = {
72748
72843
  "png",
72749
72844
  "qx"
72750
72845
  ],
72751
- "qx/tool/website/build/assets/qx-ide.png": [
72752
- 3183,
72753
- 1752,
72754
- "png",
72755
- "qx"
72756
- ],
72757
- "qx/tool/website/build/assets/qx-white.svg": [
72758
- 64,
72759
- 65,
72846
+ "qx/tool/website/build/assets/logo.svg": [
72847
+ 512,
72848
+ 145,
72760
72849
  "svg",
72761
72850
  "qx"
72762
72851
  ],
@@ -72766,31 +72855,19 @@ qx.$$packageData['0'] = {
72766
72855
  "png",
72767
72856
  "qx"
72768
72857
  ],
72769
- "qx/tool/website/build/diagnostics/dependson.html": [
72770
- null,
72771
- null,
72772
- "html",
72773
- "qx"
72774
- ],
72775
- "qx/tool/website/build/diagnostics/dependson.js": [
72776
- null,
72777
- null,
72778
- "js",
72779
- "qx"
72780
- ],
72781
- "qx/tool/website/build/diagnostics/requiredby.html": [
72782
- null,
72783
- null,
72784
- "html",
72858
+ "qx/tool/website/build/assets/qx-white.svg": [
72859
+ 64,
72860
+ 65,
72861
+ "svg",
72785
72862
  "qx"
72786
72863
  ],
72787
- "qx/tool/website/build/diagnostics/requiredby.js": [
72864
+ "qx/tool/website/build/scripts/serve.js": [
72788
72865
  null,
72789
72866
  null,
72790
72867
  "js",
72791
72868
  "qx"
72792
72869
  ],
72793
- "qx/tool/website/build/scripts/serve.js": [
72870
+ "qx/tool/website/src/assets/bluebird.min.js": [
72794
72871
  null,
72795
72872
  null,
72796
72873
  "js",
@@ -72802,10 +72879,10 @@ qx.$$packageData['0'] = {
72802
72879
  "css",
72803
72880
  "qx"
72804
72881
  ],
72805
- "qx/tool/website/src/assets/bluebird.min.js": [
72882
+ "qx/tool/website/src/assets/bootstrap.min.css": [
72806
72883
  null,
72807
72884
  null,
72808
- "js",
72885
+ "css",
72809
72886
  "qx"
72810
72887
  ],
72811
72888
  "qx/tool/website/src/assets/bootstrap.css": [
@@ -72814,19 +72891,19 @@ qx.$$packageData['0'] = {
72814
72891
  "css",
72815
72892
  "qx"
72816
72893
  ],
72817
- "qx/tool/website/src/assets/bootstrap.min.css": [
72894
+ "qx/tool/website/src/assets/bootstrap.min.css.map": [
72818
72895
  null,
72819
72896
  null,
72820
- "css",
72897
+ "map",
72821
72898
  "qx"
72822
72899
  ],
72823
- "qx/tool/website/src/assets/bootstrap.min.css.map": [
72900
+ "qx/tool/website/src/assets/buttons.js": [
72824
72901
  null,
72825
72902
  null,
72826
- "map",
72903
+ "js",
72827
72904
  "qx"
72828
72905
  ],
72829
- "qx/tool/website/src/assets/buttons.js": [
72906
+ "qx/tool/website/src/assets/jquery.js": [
72830
72907
  null,
72831
72908
  null,
72832
72909
  "js",
@@ -72844,12 +72921,6 @@ qx.$$packageData['0'] = {
72844
72921
  "js",
72845
72922
  "qx"
72846
72923
  ],
72847
- "qx/tool/website/src/assets/jquery.js": [
72848
- null,
72849
- null,
72850
- "js",
72851
- "qx"
72852
- ],
72853
72924
  "qx/tool/website/src/assets/logo.svg": [
72854
72925
  512,
72855
72926
  145,
@@ -72880,12 +72951,6 @@ qx.$$packageData['0'] = {
72880
72951
  "svg",
72881
72952
  "qx"
72882
72953
  ],
72883
- "qx/tool/website/src/scripts/serve.js": [
72884
- null,
72885
- null,
72886
- "js",
72887
- "qx"
72888
- ],
72889
72954
  "qx/tool/website/src/diagnostics/dependson.html": [
72890
72955
  null,
72891
72956
  null,
@@ -72910,19 +72975,25 @@ qx.$$packageData['0'] = {
72910
72975
  "js",
72911
72976
  "qx"
72912
72977
  ],
72978
+ "qx/tool/website/src/scripts/serve.js": [
72979
+ null,
72980
+ null,
72981
+ "js",
72982
+ "qx"
72983
+ ],
72913
72984
  "qx/tool/cli/templates/skeleton/desktop/.gitignore.tmpl": [
72914
72985
  null,
72915
72986
  null,
72916
72987
  "tmpl",
72917
72988
  "qx"
72918
72989
  ],
72919
- "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
72990
+ "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
72920
72991
  null,
72921
72992
  null,
72922
72993
  "json",
72923
72994
  "qx"
72924
72995
  ],
72925
- "qx/tool/cli/templates/skeleton/desktop/Manifest.tmpl.json": [
72996
+ "qx/tool/cli/templates/skeleton/desktop/compile.tmpl.json": [
72926
72997
  null,
72927
72998
  null,
72928
72999
  "json",
@@ -72934,52 +73005,52 @@ qx.$$packageData['0'] = {
72934
73005
  "md",
72935
73006
  "qx"
72936
73007
  ],
72937
- "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
73008
+ "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
72938
73009
  null,
72939
73010
  null,
72940
73011
  "tmpl",
72941
73012
  "qx"
72942
73013
  ],
72943
- "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
73014
+ "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
72944
73015
  null,
72945
73016
  null,
72946
73017
  "json",
72947
73018
  "qx"
72948
73019
  ],
72949
- "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
73020
+ "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
72950
73021
  null,
72951
73022
  null,
72952
73023
  "json",
72953
73024
  "qx"
72954
73025
  ],
72955
- "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
73026
+ "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
72956
73027
  null,
72957
73028
  null,
72958
73029
  "md",
72959
73030
  "qx"
72960
73031
  ],
72961
- "qx/tool/cli/templates/skeleton/package/.gitignore.tmpl": [
73032
+ "qx/tool/cli/templates/skeleton/mobile/.gitignore.tmpl": [
72962
73033
  null,
72963
73034
  null,
72964
73035
  "tmpl",
72965
73036
  "qx"
72966
73037
  ],
72967
- "qx/tool/cli/templates/skeleton/package/Manifest.tmpl.json": [
73038
+ "qx/tool/cli/templates/skeleton/mobile/Manifest.tmpl.json": [
72968
73039
  null,
72969
73040
  null,
72970
73041
  "json",
72971
73042
  "qx"
72972
73043
  ],
72973
- "qx/tool/cli/templates/skeleton/package/readme.tmpl.md": [
73044
+ "qx/tool/cli/templates/skeleton/mobile/compile.tmpl.json": [
72974
73045
  null,
72975
73046
  null,
72976
- "md",
73047
+ "json",
72977
73048
  "qx"
72978
73049
  ],
72979
- "qx/tool/cli/templates/skeleton/package/compile.tmpl.json": [
73050
+ "qx/tool/cli/templates/skeleton/mobile/readme.tmpl.md": [
72980
73051
  null,
72981
73052
  null,
72982
- "json",
73053
+ "md",
72983
73054
  "qx"
72984
73055
  ],
72985
73056
  "qx/tool/cli/templates/skeleton/server/.gitignore.tmpl": [
@@ -72988,13 +73059,13 @@ qx.$$packageData['0'] = {
72988
73059
  "tmpl",
72989
73060
  "qx"
72990
73061
  ],
72991
- "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
73062
+ "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
72992
73063
  null,
72993
73064
  null,
72994
73065
  "json",
72995
73066
  "qx"
72996
73067
  ],
72997
- "qx/tool/cli/templates/skeleton/server/compile.tmpl.json": [
73068
+ "qx/tool/cli/templates/skeleton/server/Manifest.tmpl.json": [
72998
73069
  null,
72999
73070
  null,
73000
73071
  "json",
@@ -73018,37 +73089,37 @@ qx.$$packageData['0'] = {
73018
73089
  "html",
73019
73090
  "qx"
73020
73091
  ],
73021
- "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73092
+ "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73022
73093
  null,
73023
73094
  null,
73024
- "html",
73095
+ "txt",
73025
73096
  "qx"
73026
73097
  ],
73027
- "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73098
+ "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73028
73099
  null,
73029
73100
  null,
73030
- "html",
73101
+ "txt",
73031
73102
  "qx"
73032
73103
  ],
73033
- "qx/tool/cli/templates/skeleton/desktop/source/translation/readme.txt": [
73104
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/index.tmpl.html": [
73034
73105
  null,
73035
73106
  null,
73036
- "txt",
73107
+ "html",
73037
73108
  "qx"
73038
73109
  ],
73039
- "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73110
+ "qx/tool/cli/templates/skeleton/mobile/source/boot/nojs.tmpl.html": [
73040
73111
  null,
73041
73112
  null,
73042
- "txt",
73113
+ "html",
73043
73114
  "qx"
73044
73115
  ],
73045
- "qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
73116
+ "qx/tool/cli/templates/skeleton/mobile/source/translation/readme.txt": [
73046
73117
  null,
73047
73118
  null,
73048
73119
  "txt",
73049
73120
  "qx"
73050
73121
  ],
73051
- "qx/tool/cli/templates/skeleton/package/source/translation/readme.txt": [
73122
+ "qx/tool/cli/templates/skeleton/server/source/translation/readme.txt": [
73052
73123
  null,
73053
73124
  null,
73054
73125
  "txt",
@@ -73066,19 +73137,37 @@ qx.$$packageData['0'] = {
73066
73137
  "png",
73067
73138
  "qx"
73068
73139
  ],
73140
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73141
+ null,
73142
+ null,
73143
+ "js",
73144
+ "qx"
73145
+ ],
73146
+ "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73147
+ 32,
73148
+ 32,
73149
+ "png",
73150
+ "qx"
73151
+ ],
73069
73152
  "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/js_256x256.png": [
73070
73153
  256,
73071
73154
  256,
73072
73155
  "png",
73073
73156
  "qx"
73074
73157
  ],
73075
- "qx/tool/cli/templates/skeleton/desktop/source/resource/custom/test.png": [
73158
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73159
+ null,
73160
+ null,
73161
+ "js",
73162
+ "qx"
73163
+ ],
73164
+ "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73076
73165
  32,
73077
73166
  32,
73078
73167
  "png",
73079
73168
  "qx"
73080
73169
  ],
73081
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/Application.tmpl.js": [
73170
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73082
73171
  null,
73083
73172
  null,
73084
73173
  "js",
@@ -73090,7 +73179,7 @@ qx.$$packageData['0'] = {
73090
73179
  "js",
73091
73180
  "qx"
73092
73181
  ],
73093
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/__init__.tmpl.js": [
73182
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73094
73183
  null,
73095
73184
  null,
73096
73185
  "js",
@@ -73120,24 +73209,6 @@ qx.$$packageData['0'] = {
73120
73209
  "png",
73121
73210
  "qx"
73122
73211
  ],
73123
- "qx/tool/cli/templates/skeleton/package/source/class/custom/Button.tmpl.js": [
73124
- null,
73125
- null,
73126
- "js",
73127
- "qx"
73128
- ],
73129
- "qx/tool/cli/templates/skeleton/package/source/class/custom/__init__.tmpl.js": [
73130
- null,
73131
- null,
73132
- "js",
73133
- "qx"
73134
- ],
73135
- "qx/tool/cli/templates/skeleton/package/source/resource/custom/test.png": [
73136
- 32,
73137
- 32,
73138
- "png",
73139
- "qx"
73140
- ],
73141
73212
  "qx/tool/cli/templates/skeleton/server/source/class/custom/Application.tmpl.js": [
73142
73213
  null,
73143
73214
  null,
@@ -73156,12 +73227,6 @@ qx.$$packageData['0'] = {
73156
73227
  "tmpl",
73157
73228
  "qx"
73158
73229
  ],
73159
- "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73160
- null,
73161
- null,
73162
- "js",
73163
- "qx"
73164
- ],
73165
73230
  "qx/tool/cli/templates/skeleton/desktop/source/class/custom/theme/Appearance.tmpl.js": [
73166
73231
  null,
73167
73232
  null,
@@ -73192,82 +73257,88 @@ qx.$$packageData['0'] = {
73192
73257
  "js",
73193
73258
  "qx"
73194
73259
  ],
73195
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73260
+ "qx/tool/cli/templates/skeleton/desktop/source/class/custom/test/DemoTest.tmpl.js": [
73196
73261
  null,
73197
73262
  null,
73198
73263
  "js",
73199
73264
  "qx"
73200
73265
  ],
73201
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73266
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73202
73267
  null,
73203
73268
  null,
73204
73269
  "js",
73205
73270
  "qx"
73206
73271
  ],
73207
- "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73272
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73208
73273
  null,
73209
73274
  null,
73210
73275
  "js",
73211
73276
  "qx"
73212
73277
  ],
73213
- "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73278
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73214
73279
  null,
73215
73280
  null,
73216
- "tmpl",
73281
+ "js",
73217
73282
  "qx"
73218
73283
  ],
73219
- "qx/tool/cli/templates/skeleton/package/source/class/custom/demo/Application.tmpl.js": [
73284
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73220
73285
  null,
73221
73286
  null,
73222
73287
  "js",
73223
73288
  "qx"
73224
73289
  ],
73225
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73290
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73226
73291
  null,
73227
73292
  null,
73228
- "scss",
73293
+ "js",
73229
73294
  "qx"
73230
73295
  ],
73231
- "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73296
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73232
73297
  null,
73233
73298
  null,
73234
- "scss",
73299
+ "js",
73235
73300
  "qx"
73236
73301
  ],
73237
- "qx/tool/cli/templates/skeleton/package/source/class/custom/test/DemoTest.tmpl.js": [
73302
+ "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73238
73303
  null,
73239
73304
  null,
73240
73305
  "js",
73241
73306
  "qx"
73242
73307
  ],
73243
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Appearance.tmpl.js": [
73308
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Login.tmpl.js": [
73244
73309
  null,
73245
73310
  null,
73246
73311
  "js",
73247
73312
  "qx"
73248
73313
  ],
73249
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Color.tmpl.js": [
73314
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/Overview.tmpl.js": [
73250
73315
  null,
73251
73316
  null,
73252
73317
  "js",
73253
73318
  "qx"
73254
73319
  ],
73255
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Font.tmpl.js": [
73320
+ "qx/tool/cli/templates/skeleton/mobile/source/class/custom/page/__init__.tmpl.js": [
73256
73321
  null,
73257
73322
  null,
73258
73323
  "js",
73259
73324
  "qx"
73260
73325
  ],
73261
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Decoration.tmpl.js": [
73326
+ "qx/tool/cli/templates/skeleton/mobile/source/resource/custom/css/.gitignore.tmpl": [
73262
73327
  null,
73263
73328
  null,
73264
- "js",
73329
+ "tmpl",
73265
73330
  "qx"
73266
73331
  ],
73267
- "qx/tool/cli/templates/skeleton/package/source/class/custom/theme/Theme.tmpl.js": [
73332
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/custom.scss": [
73268
73333
  null,
73269
73334
  null,
73270
- "js",
73335
+ "scss",
73336
+ "qx"
73337
+ ],
73338
+ "qx/tool/cli/templates/skeleton/mobile/source/theme/custom/scss/_styles.scss": [
73339
+ null,
73340
+ null,
73341
+ "scss",
73271
73342
  "qx"
73272
73343
  ],
73273
73344
  "qx/tool/cli/templates/skeleton/server/source/class/custom/test/DemoTest.tmpl.js": [