Skip to content

Commit

Permalink
Merge pull request #80 from ekonstantinidis/update-dist-script
Browse files Browse the repository at this point in the history
Update dist script & Remove client secret key
  • Loading branch information
ekonstantinidis committed Aug 1, 2015
2 parents 5da077d + 7285aed commit b444e11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"watch-js": "watchify -t babelify src/js/app.js -o build/js/app.js -v",
"watch": "npm run build && grunt build && npm run watch-js & grunt watch",
"start": "electron .",
"dist": "rm -rf Gitify.app/ && electron-packager . Gitify --platform=darwin --arch=x64 --version=0.30.2 --icon=images/app-icon.icns --prune --ignore=src",
"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'",
"test": "jsxhint --reporter=node_modules/jshint-stylish 'src/**/*.js', 'index.js' --exclude 'Gruntfile.js' && jscs 'src/js/' && jest"
},
"jshintConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/js/components/login.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ var Login = React.createClass({
// Start Login
var options = {
client_id: '27a352516d3341cee376',
client_secret: '626a199b0656c55b2cbf3a3199e573ce17f549bc',
client_secret: '',
scope: ['user:email', 'notifications']
};

Expand Down

0 comments on commit b444e11

Please sign in to comment.