- Version:
"electron": "~1.7.8",
"electron-builder": "^20.0.6",
"electron-publisher-s3": "^20.0.5",
Windows, distribute to S3 bucket using electron-publisher-s3
I get an error message saying electron-publisher-s3 cannot be found inside the electron-builder module.
I can see it is installed correctly both globally and locally. Any ideas?
//Package.json file
"scripts": {
"start": "./node_modules/.bin/electron .",
"test": "mocha",
"win": "electron-builder -w",
"make-cert": "electron-builder create-self-signed-cert -p xxcertname"
},
"build": {
"win": {
"certificateFile": "private/xx.pfx",
"verifyUpdateCodeSignature": false,
"publisherName": "xxcertname",
"publish": [
{
"provider": "s3",
"bucket": "MYSECRETBucketname"
}
]
}
},
"electron": "~1.7.8",
"electron-builder": "^20.0.6",
"electron-publisher-s3": "^20.0.5",
Windows, distribute to S3 bucket using electron-publisher-s3
I get an error message saying electron-publisher-s3 cannot be found inside the electron-builder module.
I can see it is installed correctly both globally and locally. Any ideas?
//Package.json file