Build proxy for all dist

This commit is contained in:
Hinton 2020-10-26 20:35:47 +01:00
parent da0cd3d588
commit 0c0beb7446
1 changed files with 6 additions and 6 deletions

View File

@ -44,12 +44,12 @@
"pack:win": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never -c.win.certificateSubjectName=\"8bit Solutions LLC\"",
"pack:win:ci": "npm run clean:dist && electron-builder --win --x64 --ia32 -p never",
"pack:proxy": "pkg build/proxy/app.js --out-path build/proxies",
"dist:dir": "npm run build && npm run pack:dir",
"dist:lin": "npm run build && npm run pack:lin",
"dist:mac": "npm run build && npm run pack:mac",
"dist:mac:mas": "npm run build && npm run pack:mac:mas",
"dist:mac:masdev": "npm run build && npm run pack:mac:masdev",
"dist:win": "npm run build && npm run pack:win",
"dist:dir": "npm run build && npm run dist:proxy && npm run pack:dir",
"dist:lin": "npm run build && npm run dist:proxy && npm run pack:lin",
"dist:mac": "npm run build && npm run dist:proxy && npm run pack:mac",
"dist:mac:mas": "npm run build && npm run dist:proxy && npm run pack:mac:mas",
"dist:mac:masdev": "npm run build && npm run dist:proxy && npm run pack:mac:masdev",
"dist:win": "npm run build && npm run dist:proxy && npm run pack:win",
"dist:win:ci": "npm run build && npm run dist:proxy && npm run pack:win:ci",
"dist:proxy": "npm run build:proxy && npm run pack:proxy",
"publish:lin": "npm run build && npm run clean:dist && electron-builder --linux --x64 -p always",