nwjs-builder-phoenix
Version:
A possible solution to build and package a ready for distribution NW.js app for Windows, macOS and Linux.
26 lines • 772 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var MacConfig = (function () {
function MacConfig(options) {
if (options === void 0) { options = {}; }
var _this = this;
this.name = '';
this.displayName = '';
this.version = '';
this.description = '';
this.copyright = '';
this.icon = undefined;
Object.keys(this).map(function (key) {
if (options[key] !== undefined) {
switch (key) {
default:
_this[key] = options[key];
break;
}
}
});
}
return MacConfig;
}());
exports.MacConfig = MacConfig;
//# sourceMappingURL=MacConfig.js.map