Skip to content

Commit

Permalink
docs:
Browse files Browse the repository at this point in the history
- fix readme typo
- add more badges
- add more keywords
- rm ./coverage after run coveralls
  • Loading branch information
neikvon committed Dec 4, 2017
1 parent 7ed770c commit bb6611b
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 6 deletions.
7 changes: 5 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
</div>

<p align="center">
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/v/fbi.svg" alt="NPM version"></a>
<a href="https://travis-ci.org/AlloyTeam/fbi/"><img src="https://img.shields.io/travis/AlloyTeam/fbi/v3.x.svg" alt="Build Status"></a>
<a href='https://coveralls.io/github/AlloyTeam/fbi?branch=v3.x'><img src='https://coveralls.io/repos/github/AlloyTeam/fbi/badge.svg?branch=v3.x' alt='Coverage Status'></a>
<a href='https://david-dm.org/AlloyTeam/fbi/v3.x'><img src='https://img.shields.io/david/AlloyTeam/fbi/v3.x.svg' alt='David deps'></a>
<a href='http://nodejs.org/download/'><img src='https://img.shields.io/badge/node.js-%3E=_7.6.0-green.svg' alt='node version'></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/dm/fbi.svg" alt="Downloads"></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/v/fbi.svg" alt="Version"></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/l/fbi.svg" alt="License"></a>
<a href="https://github.com/sindresorhus/xo"><img src="https://img.shields.io/badge/code_style-XO-5ed9c7.svg" alt="License"></a>
</p>

fbi is an open source workflow tool. It was designed to help developers improve productivity, unify and standardize teams workflows.
Expand All @@ -27,7 +30,7 @@ fbi is an open source workflow tool. It was designed to help developers improve
## Quick start

```bash
# install globally
# Install globally
$ npm i -g fbi

$ cd path/to/workspace
Expand Down
5 changes: 4 additions & 1 deletion README_zh.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@
</div>

<p align="center">
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/v/fbi.svg" alt="NPM version"></a>
<a href="https://travis-ci.org/AlloyTeam/fbi/"><img src="https://img.shields.io/travis/AlloyTeam/fbi/v3.x.svg" alt="Build Status"></a>
<a href='https://coveralls.io/github/AlloyTeam/fbi?branch=v3.x'><img src='https://coveralls.io/repos/github/AlloyTeam/fbi/badge.svg?branch=v3.x' alt='Coverage Status'></a>
<a href='https://david-dm.org/AlloyTeam/fbi/v3.x'><img src='https://img.shields.io/david/AlloyTeam/fbi/v3.x.svg' alt='David deps'></a>
<a href='http://nodejs.org/download/'><img src='https://img.shields.io/badge/node.js-%3E=_7.6.0-green.svg' alt='node version'></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/dm/fbi.svg" alt="Downloads"></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/v/fbi.svg" alt="Version"></a>
<a href="https://www.npmjs.com/package/fbi"><img src="https://img.shields.io/npm/l/fbi.svg" alt="License"></a>
<a href="https://github.com/sindresorhus/xo"><img src="https://img.shields.io/badge/code_style-XO-5ed9c7.svg" alt="License"></a>
</p>

fbi是一个开源的的工作流工具。它旨在帮助开发人员提高生产力,统一和标准化团队工作流程。
Expand Down
10 changes: 7 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "fbi",
"version": "3.0.0",
"version": "3.0.0-beta.20",
"description": "Node.js workflow tool.",
"engines": {
"node": ">= 7.6.0",
Expand All @@ -19,7 +19,7 @@
"publish-major": "npm version major && git push && git push --tags && npm publish",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release-changelog": "git add CHANGELOG.md && git commit -m 'release CHANGELOG.md' && git push",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
"coveralls": "nyc report --reporter=text-lcov | coveralls && rm -rf ./coverage"
},
"dependencies": {},
"devDependencies": {
Expand All @@ -39,10 +39,14 @@
"keywords": [
"fbi",
"workflow",
"tool",
"development",
"template",
"task",
"cli"
"cli",
"commandline",
"teamwork",
"dependencies"
],
"bugs": {
"url": "https://github.com/neikvon/fbi/issues"
Expand Down

0 comments on commit bb6611b

Please sign in to comment.