Skip to content

Commit

Permalink
feat: add semantic-release (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
zeke authored Oct 23, 2018
1 parent 97c1abe commit 70a4b0d
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
12 changes: 11 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
language: node_js
cache:
directories:
- ~/.npm
notifications:
email: false
node_js:
- "8"
- '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,11 +1,13 @@
{
"name": "get-svg-colors",
"version": "1.4.0",
"version": "0.0.0-development",
"description": "Extract stroke and fill colors from SVG files",
"repository": "github:zeke/get-svg-colors",
"main": "index.js",
"scripts": {
"test": "mocha"
"test": "mocha",
"travis-deploy-once": "travis-deploy-once",
"semantic-release": "semantic-release"
},
"author": "",
"license": "ISC",
Expand All @@ -17,6 +19,8 @@
"lodash.uniq": "^4.5.0"
},
"devDependencies": {
"mocha": "^5.2.0"
"mocha": "^5.2.0",
"travis-deploy-once": "^5.0.9",
"semantic-release": "^15.10.5"
}
}

0 comments on commit 70a4b0d

Please sign in to comment.