chore: test package windows
This commit is contained in:
parent
7ea1309766
commit
10bee45859
|
@ -1,7 +1,7 @@
|
||||||
process.env.NODE_ENV = 'production'
|
process.env.NODE_ENV = 'production'
|
||||||
|
|
||||||
import { build as viteBuild } from 'vite'
|
import { build as viteBuild } from 'vite'
|
||||||
import { build as electronBuild } from 'electron-builder'
|
import { build as electronBuild, Platform } from 'electron-builder'
|
||||||
import { config as builderConfig } from '../configs/electron-builder.config.mjs'
|
import { config as builderConfig } from '../configs/electron-builder.config.mjs'
|
||||||
import chalk from 'chalk'
|
import chalk from 'chalk'
|
||||||
|
|
||||||
|
@ -23,10 +23,13 @@ async function buildElectron() {
|
||||||
}
|
}
|
||||||
|
|
||||||
async function packElectron() {
|
async function packElectron() {
|
||||||
return electronBuild({ config: builderConfig })
|
return electronBuild({
|
||||||
.then(result => {
|
config: builderConfig,
|
||||||
console.log(TAG, chalk.green(`[electron-builder.build result]: ${result}`))
|
// if you want to build windows platform
|
||||||
})
|
// targets: Platform.WINDOWS.createTarget(),
|
||||||
|
}).then(result => {
|
||||||
|
console.log(TAG, 'WINDOWS:', chalk.green(result))
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
; (async () => {
|
; (async () => {
|
||||||
|
|
Loading…
Reference in New Issue