We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4628fb commit cbf0d46Copy full SHA for cbf0d46
package.json
@@ -40,6 +40,7 @@
40
"electron-packager": "^6.0.0",
41
"electron-prebuilt": "^0.37.2",
42
"mocha": "^2.3.4",
43
+ "request": "^2.70.0",
44
"spectron": "~1.37.0",
45
"standard-format": "^2.1.1"
46
},
script/release
@@ -0,0 +1,9 @@
1
+#!/usr/bin/env node
2
+
3
+const request = require('request')
4
5
+if (!process.env.ELECTRON_API_DEMO_GITHUB_TOKEN) {
6
+ console.error('ELECTRON_API_DEMO_GITHUB_TOKEN environment variable not set')
7
+ console.error('Set it to a token with repo scope created from https://github.com/settings/tokens/new')
8
+ process.exit(1)
9
+}
0 commit comments