mirror of
https://github.com/cypress-io/cypress.git
synced 2025-12-30 19:19:53 -06:00
* chore: implement remote executable signing for windows to comply with new signing key storage requirements [run ci] * bump circleci cache to avoid electron install issues [run ci] * chore: use fs-extra to ensure and create directory for temporary files and use os package to locate OS tmp directory
28 lines
659 B
JSON
28 lines
659 B
JSON
{
|
|
"productName": "Cypress",
|
|
"appId": "com.electron.cypress",
|
|
"target": "zip",
|
|
"mac": {
|
|
"target": "zip",
|
|
"forceCodeSigning": true,
|
|
"publish": null,
|
|
"hardenedRuntime": true,
|
|
"entitlements": "./scripts/entitlements.mac.inherit.plist",
|
|
"entitlementsInherit": "./scripts/entitlements.mac.inherit.plist",
|
|
"type": "distribution"
|
|
},
|
|
"linux": {
|
|
"target": "dir",
|
|
"executableName": "Cypress"
|
|
},
|
|
"win": {
|
|
"signingHashAlgorithms": [
|
|
"sha256"
|
|
],
|
|
"sign": "./scripts/windows-sign.js",
|
|
"target": "dir"
|
|
},
|
|
"afterPack": "./scripts/after-pack-hook.js",
|
|
"afterSign": "./scripts/after-sign-hook.js"
|
|
}
|