1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-29 14:43:31 +00:00

Set correct paths to binary in manifest for npm run

This commit is contained in:
Hinton
2020-10-21 20:40:24 +02:00
parent 77fc0ce55b
commit 470df8f589
3 changed files with 138 additions and 96 deletions

View File

@@ -43,14 +43,14 @@
"pack:mac:masdev": "npm run clean:dist && electron-builder --mac mas-dev -p never",
"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/proxys",
"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:win:ci": "npm run build && npm run pack:win:ci",
"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",
"publish:mac": "npm run build && npm run clean:dist && electron-builder --mac -p always",
@@ -117,7 +117,7 @@
],
"extraResources": [
{
"from": "build/proxys/app-macos",
"from": "build/proxies/app-macos",
"to": "proxy"
}
]
@@ -131,7 +131,7 @@
],
"extraResources": [
{
"from": "build/proxys/app-win.exe",
"from": "build/proxies/app-win.exe",
"to": "proxy.exe"
},
{
@@ -160,7 +160,7 @@
},
"extraResources": [
{
"from": "build/proxys/app-linux",
"from": "build/proxies/app-linux",
"to": "proxy"
}
]