Skip to content

Commit b444e11

Browse files
Merge pull request #80 from ekonstantinidis/update-dist-script
Update dist script & Remove client secret key
2 parents 5da077d + 7285aed commit b444e11

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"watch-js": "watchify -t babelify src/js/app.js -o build/js/app.js -v",
1010
"watch": "npm run build && grunt build && npm run watch-js & grunt watch",
1111
"start": "electron .",
12-
"dist": "rm -rf Gitify.app/ && electron-packager . Gitify --platform=darwin --arch=x64 --version=0.30.2 --icon=images/app-icon.icns --prune --ignore=src",
12+
"dist": "electron-packager . Gitify --overwrite --platform=darwin --arch=x64 --version=0.30.2 --asar=true --icon=images/app-icon.icns --prune --ignore='src' --ignore='coverage'",
1313
"test": "jsxhint --reporter=node_modules/jshint-stylish 'src/**/*.js', 'index.js' --exclude 'Gruntfile.js' && jscs 'src/js/' && jest"
1414
},
1515
"jshintConfig": {

src/js/components/login.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ var Login = React.createClass({
1818
// Start Login
1919
var options = {
2020
client_id: '27a352516d3341cee376',
21-
client_secret: '626a199b0656c55b2cbf3a3199e573ce17f549bc',
21+
client_secret: '',
2222
scope: ['user:email', 'notifications']
2323
};
2424

0 commit comments

Comments
 (0)