@electron/packager
Version:
Customize and package your Electron app with OS-specific bundles (.app, .exe, etc.) via JS or CLI
22 lines • 659 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.App = exports.LinuxApp = void 0;
const platform_1 = require("./platform");
const common_1 = require("./common");
class LinuxApp extends platform_1.App {
get originalElectronName() {
return 'electron';
}
get newElectronName() {
return (0, common_1.sanitizeAppName)(this.executableName);
}
async create() {
await this.initialize();
await this.renameElectron();
await this.copyExtraResources();
return this.move();
}
}
exports.LinuxApp = LinuxApp;
exports.App = LinuxApp;
//# sourceMappingURL=linux.js.map