Skip to content

Commit 7e156cc

Browse files
committed
Merge pull request depcheck#36 from lijunle/builds
Update the badges and builds.
2 parents c8476b1 + 219a0a9 commit 7e156cc

File tree

3 files changed

+13
-13
lines changed

3 files changed

+13
-13
lines changed

.travis.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
sudo: false
2+
13
language: node_js
24

35
node_js:
@@ -7,10 +9,10 @@ node_js:
79
- 'node'
810

911
script:
10-
- npm run depcheck-web
12+
- npm run depcheck
1113
- npm run lint
12-
- npm run test-coveralls
13-
- cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js
14+
- npm run test-coverage
15+
- cat ./coverage/coverage.json | ./node_modules/codecov.io/bin/codecov.io.js
1416

1517
before_deploy:
1618
- npm run patch-version

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,12 @@ And that is why `depcheck` exists - it's a nifty little tool that looks at your
66

77
## Build Status
88

9-
[![build status](https://secure.travis-ci.org/lijunle/depcheck-es6.svg?branch=master)](http://travis-ci.org/lijunle/depcheck-es6)
10-
[![Build status](https://ci.appveyor.com/api/projects/status/w774aev2mj0s2hlf/branch/master?svg=true)](https://ci.appveyor.com/project/lijunle/depcheck-es6/branch/master)
11-
[![Coverage Status](https://coveralls.io/repos/lijunle/depcheck-es6/badge.svg?branch=master&service=github)](https://coveralls.io/github/lijunle/depcheck-es6?branch=master)
9+
[![Build Status](https://travis-ci.org/depcheck/depcheck.svg?branch=master)](https://travis-ci.org/depcheck/depcheck)
10+
[![Build status](https://ci.appveyor.com/api/projects/status/xbooh370dinuyi0y/branch/master?svg=true)](https://ci.appveyor.com/project/lijunle/depcheck/branch/master)
11+
[![codecov.io](https://codecov.io/github/depcheck/depcheck/coverage.svg?branch=master)](https://codecov.io/github/depcheck/depcheck?branch=master)
1212

13-
[![Depcheck](https://depcheck.tk/github/lijunle/depcheck-es6/master.svg)](https://github.com/lijunle/depcheck-es6)
14-
[![Dependency Status](https://david-dm.org/lijunle/depcheck-es6.svg)](https://david-dm.org/lijunle/depcheck-es6)
15-
[![devDependency Status](https://david-dm.org/lijunle/depcheck-es6/dev-status.svg)](https://david-dm.org/lijunle/depcheck-es6#info=devDependencies)
13+
[![Dependency Status](https://david-dm.org/depcheck/depcheck.svg)](https://david-dm.org/depcheck/depcheck)
14+
[![devDependency Status](https://david-dm.org/depcheck/depcheck/dev-status.svg)](https://david-dm.org/depcheck/depcheck#info=devDependencies)
1615

1716
## Installation
1817

@@ -42,7 +41,7 @@ All the arguments are optional:
4241

4342
`--help`: Show the help message.
4443

45-
`--parsers`, `--detectors` and `--specials`: These arguments are for advanced usage. They provide an easy way to customize the file parser and dependency detection. Check [the pluggable design document](https://github.com/lijunle/depcheck-es6/blob/master/doc/pluggable-design.md) for more information.
44+
`--parsers`, `--detectors` and `--specials`: These arguments are for advanced usage. They provide an easy way to customize the file parser and dependency detection. Check [the pluggable design document](https://github.com/depcheck/depcheck/blob/master/doc/pluggable-design.md) for more information.
4645

4746
## API
4847

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@
1919
"prepublish": "npm run compile && npm run component",
2020
"lint": "eslint ./src ./test ./build",
2121
"test": "mocha --compilers js:babel/register ./test ./test/special",
22-
"test-coverage": "babel-node ./node_modules/.bin/isparta cover node_modules/mocha/bin/_mocha -- ./test ./test/special",
23-
"test-coveralls": "babel-node ./node_modules/.bin/isparta cover node_modules/mocha/bin/_mocha --report lcovonly -- ./test ./test/special -R spec"
22+
"test-coverage": "babel-node ./node_modules/.bin/isparta cover node_modules/mocha/bin/_mocha -- ./test ./test/special"
2423
},
2524
"author": [
2625
"Djordje Lukic <[email protected]>",
@@ -42,7 +41,7 @@
4241
"devDependencies": {
4342
"babel": "^5.8.23",
4443
"babel-eslint": "^4.1.3",
45-
"coveralls": "^2.11.4",
44+
"codecov.io": "^0.1.6",
4645
"eslint": "^1.7.3",
4746
"eslint-config-airbnb": "0.1.0",
4847
"isparta": "^3.0.4",

0 commit comments

Comments
 (0)