mirror of
https://github.com/geekgeekrun/geekgeekrun.git
synced 2026-05-28 03:30:18 +08:00
14 lines
273 B
JavaScript
14 lines
273 B
JavaScript
import os from 'node:os'
|
|
|
|
export const currentOsPlatform = os.platform()
|
|
export const osPlatformToBuildCommandMap = {
|
|
darwin: 'mac',
|
|
linux: 'linux',
|
|
win32: 'win'
|
|
}
|
|
export const buildTargetListMapByPlatform = {
|
|
darwin: ['dmg'],
|
|
linux: ['deb'],
|
|
win32: ['nsis']
|
|
}
|