electron-version-deployer-cli 0.0.7 → 0.0.9
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 +3 -2
package/dist/cli.cjs
CHANGED
|
@@ -214,8 +214,8 @@ commander.program.command("prepare").description(
|
|
|
214
214
|
const configs = await getConfigs();
|
|
215
215
|
try {
|
|
216
216
|
await genTmpFolder();
|
|
217
|
-
await genChangelog(configs);
|
|
218
217
|
await compile(configs);
|
|
218
|
+
await genChangelog(configs);
|
|
219
219
|
await copySourceAndZipFiles(configs);
|
|
220
220
|
} catch (e) {
|
|
221
221
|
console.log(logSymbols.error, e.toString());
|
|
@@ -495,4 +495,4 @@ async function installPrebuilt(configs) {
|
|
|
495
495
|
}
|
|
496
496
|
commander.program.description(
|
|
497
497
|
"Electron 版本部署 CLI,简化你的 Electron 软件更新,让一切变得简单。"
|
|
498
|
-
).helpOption("-h, --help", "使用帮助").version("0.0.
|
|
498
|
+
).helpOption("-h, --help", "使用帮助").version("0.0.9", "-V, --version", "显示版本号").parse(process.argv);
|
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.
|
|
4
|
+
"version": "0.0.9",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"main": "./dist/index.cjs.js",
|
|
7
7
|
"module": "./dist/index.es.js",
|
|
@@ -52,6 +52,7 @@
|
|
|
52
52
|
"jsdom": "^22.1.0",
|
|
53
53
|
"log-symbols": "=4.1.0",
|
|
54
54
|
"marked": "^5.0.4",
|
|
55
|
-
"netlify-cli": "^15.2.0"
|
|
55
|
+
"netlify-cli": "^15.2.0",
|
|
56
|
+
"vite": "^4.3.9"
|
|
56
57
|
}
|
|
57
58
|
}
|