Skip to content

Commit

Permalink
feat: semantic release
Browse files Browse the repository at this point in the history
  • Loading branch information
zeke committed Apr 19, 2018
1 parent 074f751 commit 086bc27
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 3 deletions.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- '8'
after_success:
- npm run travis-deploy-once "npm run semantic-release"
branches:
except:
- /^v\d+\.\d+\.\d+$/
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "update-electron-app",
"version": "1.0.1",
"version": "0.0.0-development",
"description": "A drop-in module that adds autoUpdating capabilities to Electron apps",
"repository": "https://github.com/electron/update-electron-app",
"main": "index.js",
Expand All @@ -13,11 +13,15 @@
"devDependencies": {
"jest": "^22.4.3",
"standard": "^11.0.1",
"standard-markdown": "^4.0.2"
"standard-markdown": "^4.0.2",
"travis-deploy-once": "^4.4.1",
"semantic-release": "^15.1.7"
},
"scripts": {
"test": "jest && standard --fix && standard-markdown",
"watch": "jest --watch --notify --notifyMode=change --coverage"
"watch": "jest --watch --notify --notifyMode=change --coverage",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"standard": {
"env": {
Expand Down

0 comments on commit 086bc27

Please sign in to comment.