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 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.15", "-V, --version", "显示版本号").parse(process.argv);
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, 10 * 1e3))
246
+ new Promise((res) => setTimeout(res, 2 * 60 * 1e3))
247
247
  ]);
248
248
  }
249
249
  function bindEvent(promptWindow) {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "electron-version-deployer-cli",
3
3
  "private": false,
4
- "version": "0.0.15",
4
+ "version": "0.0.16",
5
5
  "types": "./dist/index.d.ts",
6
6
  "main": "./dist/index.cjs.js",
7
7
  "module": "./dist/index.es.js",