remove useless log

This commit is contained in:
草鞋没号 2022-02-01 08:43:39 +08:00
parent 0fe3bdf292
commit 0287277266
1 changed files with 1 additions and 2 deletions

View File

@ -30,8 +30,7 @@ const viteConfigs = {
}
async function buildElectron() {
for (const [name, config] of Object.entries(viteConfigs)) {
console.log(TAG, name)
for (const [, config] of Object.entries(viteConfigs)) {
await build(config)
console.log() // for beautiful log.
}