@qooxdoo/framework
Version:
The JS Framework for Coders
42 lines (32 loc) • 873 B
JavaScript
/* ************************************************************************
qooxdoo - the new era of web development
http://qooxdoo.org
Copyright:
2019 The qooxdoo developers
License:
MIT: https://opensource.org/licenses/MIT
See the LICENSE file in the project's top-level directory for details.
Authors:
* Christian Boulanger (info@bibliograph.org, @cboulanger)
************************************************************************ */
/**
* A model for the Manifest.json file
*/
qx.Class.define("qx.tool.config.Registry", {
extend: qx.tool.config.Abstract,
type: "singleton",
statics: {
config: {
fileName: "qooxdoo.json",
version: "1.0.0"
}
},
construct() {
super(this.self(arguments).config);
},
members: {
getLibraries() {
return this.getValue("libraries");
}
}
});