Skip to content

Commit

Permalink
ci: remove coveralls (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
QmarkC authored Aug 5, 2020
1 parent 3bedfcd commit 2360586
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
.DS_Store
node_modules
.nyc_output
coverage
package-lock.json
13 changes: 13 additions & 0 deletions .nycrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
{
"exclude": [
"test/**"
],
"reporter": [
"html",
"text"
],
"branches": 96.5,
"lines": 100,
"functions": 94,
"statements": 100
}
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# y18n

[![Build Status][travis-image]][travis-url]
[![Coverage Status][coveralls-image]][coveralls-url]
[![NPM version][npm-image]][npm-url]
[![js-standard-style][standard-image]][standard-url]
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg)](https://conventionalcommits.org)
Expand Down Expand Up @@ -105,10 +103,6 @@ post on why we think this is important](https://medium.com/the-node-js-collectio

ISC

[travis-url]: https://travis-ci.org/yargs/y18n
[travis-image]: https://img.shields.io/travis/yargs/y18n.svg
[coveralls-url]: https://coveralls.io/github/yargs/y18n
[coveralls-image]: https://img.shields.io/coveralls/yargs/y18n.svg
[npm-url]: https://npmjs.org/package/y18n
[npm-image]: https://img.shields.io/npm/v/y18n.svg
[standard-image]: https://img.shields.io/badge/code%20style-standard-brightgreen.svg
Expand Down
7 changes: 3 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,16 @@
"index.js"
],
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage": "nyc report && nyc check-coverage",
"release": "standard-version",
"pretest": "standard",
"test": "nyc mocha"
},
"devDependencies": {
"chai": "^4.0.1",
"coveralls": "^3.0.0",
"mocha": "^4.0.1",
"nyc": "^11.0.1",
"rimraf": "^2.5.0",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"standard": "^10.0.0-beta.0",
"standard-version": "^5.0.0"
},
Expand Down

0 comments on commit 2360586

Please sign in to comment.