Skip to content

Commit 9555fab

Browse files
committed
fix(travis): Allow this branch to be semantically released
BREAKING CHANGE This commit will allow the new rewritten version of this library to be released
1 parent 8b666b4 commit 9555fab

File tree

2 files changed

+13
-7
lines changed

2 files changed

+13
-7
lines changed

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,14 @@ node_js:
99
- "4.2"
1010
- "5.0"
1111
script: npm run test:ci
12-
#after_success:
13-
# - curl -Lo travis_after_all.py https://raw.githubusercontent.com/contentful/travis_after_all/master/travis_after_all.py
14-
# - python travis_after_all.py
15-
# - cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
16-
# - export $(cat .to_export_back) &> /dev/null
17-
# - npm run semantic-release
12+
after_success:
13+
- curl -Lo travis_after_all.py https://raw.githubusercontent.com/contentful/travis_after_all/master/travis_after_all.py
14+
- python travis_after_all.py
15+
- cat ./coverage/lcov.info | ./node_modules/.bin/coveralls
16+
- export $(cat .to_export_back) &> /dev/null
17+
- npm run semantic-release
1818
addons:
1919
sauce_connect: true
20+
branches:
21+
except:
22+
- "/^v\\d+\\.\\d+\\.\\d+$/"

package.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,10 @@
33
"description": "Client for Contentful's Content Delivery API",
44
"homepage": "https://www.contentful.com/developers/documentation/content-delivery-api/",
55
"main": "index.js",
6-
"repository": "git@github.com:contentful/contentful.js.git",
6+
"repository": {
7+
"type": "git",
8+
"url": "https://github.com/contentful/contentful.js.git"
9+
},
710
"author": "Contentful <support@contentful.com>",
811
"license": "MIT",
912
"scripts": {

0 commit comments

Comments
 (0)