Skip to content

Commit

Permalink
Adds badges to readme
Browse files Browse the repository at this point in the history
Also adds a prepublish script as this is v0.9.0 now!
  • Loading branch information
himynameisdave committed Apr 2, 2017
1 parent a849e19 commit 19a9252
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
7 changes: 6 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
## :flags: git-labelmaker [![Join the chat at https://gitter.im/himynameisdave/git-labelmaker](https://badges.gitter.im/himynameisdave/git-labelmaker.svg)](https://gitter.im/himynameisdave/git-labelmaker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
## :flags: git-labelmaker
[![travis-build-badge](https://api.travis-ci.org/himynameisdave/git-labelmaker.svg?branch=master)](https://travis-ci.org/himynameisdave/git-labelmaker) [![Coverage Status](https://coveralls.io/repos/github/himynameisdave/git-labelmaker/badge.svg?branch=master)](https://coveralls.io/github/himynameisdave/git-labelmaker?branch=master) [![Join the chat at https://gitter.im/himynameisdave/git-labelmaker](https://badges.gitter.im/himynameisdave/git-labelmaker.svg)](https://gitter.im/himynameisdave/git-labelmaker?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Edit GitHub labels from the command line using **`git-labelmaker`**! You can easily add or remove GitHub labels, making it easier for your projects to adhere to a [sane labelling](https://medium.com/@dave_lunny/sane-github-labels-c5d2e6004b63) scheme.

Expand All @@ -7,6 +8,10 @@ Edit GitHub labels from the command line using **`git-labelmaker`**! You can eas
Install `git-labelmaker` globally:

```
yarn global add git-labelmaker
OR
npm i -g git-labelmaker
```

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"test": "jest --verbose --coverage --no-cache",
"test-coverage": "jest --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ./bin/ --no-cache",
"precommit": "npm run lint && npm run test"
"precommit": "npm run lint && npm run test",
"prepublish": "npm run lint && npm run test"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 19a9252

Please sign in to comment.