electron-version-deployer-cli 0.0.15 → 0.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.cjs +1 -1
- package/dist/main.js +1 -1
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -507,4 +507,4 @@ async function installPrebuilt(configs) {
|
|
|
507
507
|
}
|
|
508
508
|
commander.program.description(
|
|
509
509
|
"Electron 版本部署 CLI,简化你的 Electron 软件更新,让一切变得简单。"
|
|
510
|
-
).helpOption("-h, --help", "使用帮助").version("0.0.
|
|
510
|
+
).helpOption("-h, --help", "使用帮助").version("0.0.16", "-V, --version", "显示版本号").parse(process.argv);
|
package/dist/main.js
CHANGED
|
@@ -243,7 +243,7 @@ async function installPkg(zipFile) {
|
|
|
243
243
|
new Promise((res) => {
|
|
244
244
|
child.on("exit", () => res);
|
|
245
245
|
}),
|
|
246
|
-
new Promise((res) => setTimeout(res,
|
|
246
|
+
new Promise((res) => setTimeout(res, 2 * 60 * 1e3))
|
|
247
247
|
]);
|
|
248
248
|
}
|
|
249
249
|
function bindEvent(promptWindow) {
|