Newer
Older
CVSS_3.0_GUI / node_modules / nwjs-builder-phoenix / dist / lib / config / NsisConfig.js
root on 7 May 2019 855 bytes Initial commit
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", { value: true });
  3. var NsisConfig = /** @class */ (function () {
  4. function NsisConfig(options) {
  5. if (options === void 0) { options = {}; }
  6. var _this = this;
  7. this.icon = undefined;
  8. this.unIcon = undefined;
  9. this.languages = ['English'];
  10. this.installDirectory = '$LOCALAPPDATA\\${_APPNAME}';
  11. this.diffUpdaters = false;
  12. this.hashCalculation = true;
  13. Object.keys(this).map(function (key) {
  14. if (options[key] !== undefined) {
  15. switch (key) {
  16. default:
  17. _this[key] = options[key];
  18. break;
  19. }
  20. }
  21. });
  22. }
  23. return NsisConfig;
  24. }());
  25. exports.NsisConfig = NsisConfig;
  26. //# sourceMappingURL=NsisConfig.js.map
Buy Me A Coffee