mirror of
https://github.com/all-contributors/cli.git
synced 2025-01-10 05:56:29 +00:00
chore: semantic-release
This commit is contained in:
parent
8fd40986a5
commit
1c97ba26b2
2 changed files with 18 additions and 8 deletions
16
.travis.yml
16
.travis.yml
|
@ -1,9 +1,17 @@
|
||||||
language: node_js
|
language: node_js
|
||||||
|
cache:
|
||||||
|
directories:
|
||||||
|
- node_modules
|
||||||
|
notifications:
|
||||||
|
email: false
|
||||||
node_js:
|
node_js:
|
||||||
- '6'
|
- '6'
|
||||||
- '5'
|
- '5'
|
||||||
- '4'
|
- '4'
|
||||||
- '0.12'
|
script:
|
||||||
- '0.10'
|
- npm test
|
||||||
before_install:
|
after_success:
|
||||||
- 'npm install -g npm@latest'
|
- npm run semantic-release
|
||||||
|
branches:
|
||||||
|
only:
|
||||||
|
- master
|
||||||
|
|
10
package.json
10
package.json
|
@ -1,16 +1,17 @@
|
||||||
{
|
{
|
||||||
"name": "all-contributors-cli",
|
"name": "all-contributors-cli",
|
||||||
"version": "3.0.7",
|
"version": "0.0.0-semantically-released",
|
||||||
"description": "Tool to easily add recognition for new contributors",
|
"description": "Tool to easily add recognition for new contributors",
|
||||||
"bin": {
|
"bin": {
|
||||||
"all-contributors": "cli.js"
|
"all-contributors": "cli.js"
|
||||||
},
|
},
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"test": "xo && nyc ava"
|
"test": "xo && nyc ava",
|
||||||
|
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
|
||||||
},
|
},
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "git+https://github.com/jfmengels/all-contributors-cli.git"
|
"url": "https://github.com/jfmengels/all-contributors-cli.git"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"all-contributors",
|
"all-contributors",
|
||||||
|
@ -33,7 +34,8 @@
|
||||||
"ava": "^0.14.0",
|
"ava": "^0.14.0",
|
||||||
"nock": "^8.0.0",
|
"nock": "^8.0.0",
|
||||||
"nyc": "^6.4.2",
|
"nyc": "^6.4.2",
|
||||||
"xo": "^0.15.0"
|
"xo": "^0.15.0",
|
||||||
|
"semantic-release": "^6.3.2"
|
||||||
},
|
},
|
||||||
"ava": {
|
"ava": {
|
||||||
"files": [
|
"files": [
|
||||||
|
|
Loading…
Reference in a new issue