builder.js
8.68 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createYargs = createYargs;
exports.normalizeOptions = normalizeOptions;
exports.coerceTypes = coerceTypes;
exports.createTargets = createTargets;
exports.build = build;
exports.configureBuildCommand = configureBuildCommand;
function _builderUtil() {
const data = require("builder-util");
_builderUtil = function () {
return data;
};
return data;
}
function _chalk() {
const data = _interopRequireDefault(require("chalk"));
_chalk = function () {
return data;
};
return data;
}
function _appBuilderLib() {
const data = require("app-builder-lib");
_appBuilderLib = function () {
return data;
};
return data;
}
function _yargs() {
const data = _interopRequireDefault(require("yargs"));
_yargs = function () {
return data;
};
return data;
}
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function createYargs() {
return _yargs().default.parserConfiguration({
"camel-case-expansion": false
});
}
/** @private */
function normalizeOptions(args) {
if (args.targets != null) {
return args;
}
const targets = new Map();
function processTargets(platform, types) {
function commonArch(currentIfNotSpecified) {
const result = Array();
if (args.x64) {
result.push(_builderUtil().Arch.x64);
}
if (args.armv7l) {
result.push(_builderUtil().Arch.armv7l);
}
if (args.arm64) {
result.push(_builderUtil().Arch.arm64);
}
if (args.ia32) {
result.push(_builderUtil().Arch.ia32);
}
if (args.universal) {
result.push(_builderUtil().Arch.universal);
}
return result.length === 0 && currentIfNotSpecified ? [(0, _builderUtil().archFromString)(process.arch)] : result;
}
let archToType = targets.get(platform);
if (archToType == null) {
archToType = new Map();
targets.set(platform, archToType);
}
if (types.length === 0) {
const defaultTargetValue = args.dir ? [_appBuilderLib().DIR_TARGET] : [];
for (const arch of commonArch(args.dir === true)) {
archToType.set(arch, defaultTargetValue);
}
return;
}
for (const type of types) {
const suffixPos = type.lastIndexOf(":");
if (suffixPos > 0) {
(0, _builderUtil().addValue)(archToType, (0, _builderUtil().archFromString)(type.substring(suffixPos + 1)), type.substring(0, suffixPos));
} else {
for (const arch of commonArch(true)) {
(0, _builderUtil().addValue)(archToType, arch, type);
}
}
}
}
if (args.mac != null) {
processTargets(_appBuilderLib().Platform.MAC, args.mac);
}
if (args.linux != null) {
processTargets(_appBuilderLib().Platform.LINUX, args.linux);
}
if (args.win != null) {
processTargets(_appBuilderLib().Platform.WINDOWS, args.win);
}
if (targets.size === 0) {
processTargets(_appBuilderLib().Platform.current(), []);
}
const result = { ...args
};
result.targets = targets;
delete result.dir;
delete result.mac;
delete result.linux;
delete result.win;
const r = result;
delete r.m;
delete r.o;
delete r.l;
delete r.w;
delete r.windows;
delete r.macos;
delete r.$0;
delete r._;
delete r.version;
delete r.help;
delete r.c;
delete r.p;
delete r.pd;
delete result.ia32;
delete result.x64;
delete result.armv7l;
delete result.arm64;
delete result.universal;
let config = result.config; // config is array when combining dot-notation values with a config file value
// https://github.com/electron-userland/electron-builder/issues/2016
if (Array.isArray(config)) {
const newConfig = {};
for (const configItem of config) {
if (typeof configItem === "object") {
(0, _builderUtil().deepAssign)(newConfig, configItem);
} else if (typeof configItem === "string") {
newConfig.extends = configItem;
}
}
config = newConfig;
result.config = newConfig;
} // AJV cannot coerce "null" string to null if string is also allowed (because null string is a valid value)
if (config != null && typeof config !== "string") {
if (config.extraMetadata != null) {
coerceTypes(config.extraMetadata);
} // ability to disable code sign using -c.mac.identity=null
if (config.mac != null) {
coerceValue(config.mac, "identity");
} // fix Boolean type by coerceTypes
if (config.nsis != null) {
coerceTypes(config.nsis);
}
if (config.nsisWeb != null) {
coerceTypes(config.nsisWeb);
}
}
if ("project" in r && !("projectDir" in result)) {
result.projectDir = r.project;
}
delete r.project;
return result;
}
function coerceValue(host, key) {
const value = host[key];
if (value === "true") {
host[key] = true;
} else if (value === "false") {
host[key] = false;
} else if (value === "null") {
host[key] = null;
} else if (key === "version" && typeof value === "number") {
host[key] = value.toString();
} else if (value != null && typeof value === "object") {
coerceTypes(value);
}
}
/** @private */
function coerceTypes(host) {
for (const key of Object.getOwnPropertyNames(host)) {
coerceValue(host, key);
}
return host;
}
function createTargets(platforms, type, arch) {
const targets = new Map();
for (const platform of platforms) {
const archs = arch === "all" ? platform === _appBuilderLib().Platform.MAC ? [_builderUtil().Arch.x64, _builderUtil().Arch.arm64, _builderUtil().Arch.universal] : [_builderUtil().Arch.x64, _builderUtil().Arch.ia32] : [(0, _builderUtil().archFromString)(arch == null ? process.arch : arch)];
const archToType = new Map();
targets.set(platform, archToType);
for (const arch of archs) {
archToType.set(arch, type == null ? [] : [type]);
}
}
return targets;
}
function build(rawOptions) {
const buildOptions = normalizeOptions(rawOptions || {});
return (0, _appBuilderLib().build)(buildOptions, new (_appBuilderLib().Packager)(buildOptions));
}
/**
* @private
*/
function configureBuildCommand(yargs) {
const publishGroup = "Publishing:";
const buildGroup = "Building:";
return yargs.option("mac", {
group: buildGroup,
alias: ["m", "o", "macos"],
description: `Build for macOS, accepts target list (see ${_chalk().default.underline("https://goo.gl/5uHuzj")}).`,
type: "array"
}).option("linux", {
group: buildGroup,
alias: "l",
description: `Build for Linux, accepts target list (see ${_chalk().default.underline("https://goo.gl/4vwQad")})`,
type: "array"
}).option("win", {
group: buildGroup,
alias: ["w", "windows"],
description: `Build for Windows, accepts target list (see ${_chalk().default.underline("https://goo.gl/jYsTEJ")})`,
type: "array"
}).option("x64", {
group: buildGroup,
description: "Build for x64",
type: "boolean"
}).option("ia32", {
group: buildGroup,
description: "Build for ia32",
type: "boolean"
}).option("armv7l", {
group: buildGroup,
description: "Build for armv7l",
type: "boolean"
}).option("arm64", {
group: buildGroup,
description: "Build for arm64",
type: "boolean"
}).option("universal", {
group: buildGroup,
description: "Build for universal",
type: "boolean"
}).option("dir", {
group: buildGroup,
description: "Build unpacked dir. Useful to test.",
type: "boolean"
}).option("publish", {
group: publishGroup,
alias: "p",
description: `Publish artifacts, see ${_chalk().default.underline("https://goo.gl/tSFycD")}`,
choices: ["onTag", "onTagOrDraft", "always", "never", undefined]
}).option("prepackaged", {
alias: ["pd"],
group: buildGroup,
description: "The path to prepackaged app (to pack in a distributable format)"
}).option("projectDir", {
alias: ["project"],
group: buildGroup,
description: "The path to project directory. Defaults to current working directory."
}).option("config", {
alias: ["c"],
group: buildGroup,
description: "The path to an electron-builder config. Defaults to `electron-builder.yml` (or `json`, or `json5`), see " + _chalk().default.underline("https://goo.gl/YFRJOM")
}).group(["help", "version"], "Other:").example("electron-builder -mwl", "build for macOS, Windows and Linux").example("electron-builder --linux deb tar.xz", "build deb and tar.xz for Linux").example("electron-builder --win --ia32", "build for Windows ia32").example("electron-builder -c.extraMetadata.foo=bar", "set package.json property `foo` to `bar`").example("electron-builder --config.nsis.unicode=false", "configure unicode options for NSIS");
}
// __ts-babel@6.0.4
//# sourceMappingURL=builder.js.map