electron-version-deployer-cli 0.0.3 → 0.0.4
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 +2 -2
- package/package.json +1 -1
package/dist/cli.cjs
CHANGED
|
@@ -212,8 +212,8 @@ commander.program.command("prepare").description(
|
|
|
212
212
|
const configs = await getConfigs();
|
|
213
213
|
try {
|
|
214
214
|
await genTmpFolder();
|
|
215
|
-
await compile(configs);
|
|
216
215
|
await genChangelog(configs);
|
|
216
|
+
await compile(configs);
|
|
217
217
|
await copySourceAndZipFiles(configs);
|
|
218
218
|
} catch (e) {
|
|
219
219
|
console.log(logSymbols.error, e.toString());
|
|
@@ -493,4 +493,4 @@ async function installPrebuilt(configs) {
|
|
|
493
493
|
}
|
|
494
494
|
commander.program.description(
|
|
495
495
|
"Electron 版本部署 CLI,简化你的 Electron 软件更新,让一切变得简单。"
|
|
496
|
-
).helpOption("-h, --help", "使用帮助").version("0.0.
|
|
496
|
+
).helpOption("-h, --help", "使用帮助").version("0.0.4", "-V, --version", "显示版本号").parse(process.argv);
|