Skip to content

Commit

Permalink
Updated the URL of the Git repository
Browse files Browse the repository at this point in the history
  • Loading branch information
cedx committed Jan 13, 2019
1 parent 572ab95 commit c66b9d6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 19 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## Version [4.8.0](https://github.com/cedx/lcov.js/compare/v4.7.0...v4.8.0)
- Updated the package dependencies.
- Updated the URL of the Git repository.

## Version [4.7.0](https://github.com/cedx/lcov.js/compare/v4.6.0...v4.7.0)
- Added support for a redistributable bundle.

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# LCOV Reports for JS
![Runtime](https://img.shields.io/badge/node-%3E%3D10.13-brightgreen.svg) ![Release](https://img.shields.io/npm/v/@cedx/lcov.svg) ![License](https://img.shields.io/npm/l/@cedx/lcov.svg) ![Downloads](https://img.shields.io/npm/dt/@cedx/lcov.svg) ![Dependencies](https://david-dm.org/cedx/lcov.js.svg) ![Coverage](https://coveralls.io/repos/github/cedx/lcov.js/badge.svg) ![Build](https://travis-ci.com/cedx/lcov.js.svg)
![Runtime](https://img.shields.io/badge/node-%3E%3D10.15-brightgreen.svg) ![Release](https://img.shields.io/npm/v/@cedx/lcov.svg) ![License](https://img.shields.io/npm/l/@cedx/lcov.svg) ![Downloads](https://img.shields.io/npm/dt/@cedx/lcov.svg) ![Dependencies](https://david-dm.org/cedx/lcov.js.svg) ![Coverage](https://coveralls.io/repos/github/cedx/lcov.js/badge.svg) ![Build](https://travis-ci.com/cedx/lcov.js.svg)

Parse and format [LCOV](http://ltp.sourceforge.net/coverage/lcov.js) coverage reports,
in [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) and [TypeScript](https://www.typescriptlang.org).
Expand All @@ -9,7 +9,7 @@ in [JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript) and [Ty
- [API reference](https://dev.belin.io/lcov.js/api)

## Development
- [Git repository](https://git.belin.io/cedx/lcov.js)
- [Git repository](https://github.com/cedx/lcov.js)
- [npm package](https://www.npmjs.com/package/@cedx/lcov)
- [Submit an issue](https://github.com/cedx/lcov.js/issues)

Expand Down
6 changes: 3 additions & 3 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,16 @@ Before installing **LCOV Reports for JS**, you need to make sure you have [Node.
and [npm](https://www.npmjs.com), the Node.js package manager, up and running.

!!! warning
LCOV Reports for JS requires Node.js >= **10.13.0**.
LCOV Reports for JS requires Node.js >= **10.15.0**.

You can verify if you're already good to go with the following commands:

```shell
node --version
# v10.13.0
# v11.6.0

npm --version
# 6.4.1
# 6.5.0
```

!!! info
Expand Down
2 changes: 1 addition & 1 deletion doc/usage.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
path: src/branch/master
path: blob/master
source: src/report.ts

# Usage
Expand Down
6 changes: 3 additions & 3 deletions mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ site_url: https://dev.belin.io/lcov.js
docs_dir: doc
site_dir: web

repo_name: Gitea/Belin.io
repo_url: https://git.belin.io/cedx/lcov.js
repo_name: GitHub
repo_url: https://github.com/cedx/lcov.js
edit_uri: ''

copyright: Copyright © 2017 - 2019 Cédric Belin
Expand All @@ -18,7 +18,7 @@ google_analytics:
extra:
social:
- {type: globe, link: 'https://belin.io'}
- {type: git, link: 'https://git.belin.io/cedx'}
- {type: github, link: 'https://github.com/cedx'}
- {type: twitter, link: 'https://twitter.com/cedxbelin'}
- {type: linkedin, link: 'https://linkedin.com/in/cedxbelin'}

Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,19 @@
{
"author": "Cédric Belin <cedric@belin.io>",
"browser": "./build/lcov.js",
"bugs": "https://github.com/cedx/lcov.js/issues",
"description": "Parse and format to LCOV your code coverage reports. The best way to share your code coverage stats.",
"homepage": "https://dev.belin.io/lcov.js",
"license": "MIT",
"main": "./lib/index.js",
"name": "@cedx/lcov",
"repository": "github:cedx/lcov.js",
"types": "./lib/index.d.ts",
"version": "4.7.0",
"author": {
"email": "cedric@belin.io",
"name": "Cédric Belin",
"url": "https://belin.io"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/node": "^10.12.18",
Expand All @@ -20,13 +25,13 @@
"mocha": "^5.2.0",
"mocha-typescript": "^1.1.17",
"nyc": "^13.1.0",
"source-map-support": "^0.5.9",
"source-map-support": "^0.5.10",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typedoc": "^0.14.0",
"tslint": "^5.12.1",
"typedoc": "^0.14.1",
"typescript": "^3.2.2",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0"
"webpack": "^4.28.4",
"webpack-cli": "^3.2.1"
},
"engines": {
"node": ">=10.15.0",
Expand All @@ -39,10 +44,6 @@
"parser",
"test"
],
"repository": {
"type": "git",
"url": "https://git.belin.io/cedx/lcov.js.git"
},
"scripts": {
"coverage": "gulp coverage",
"prepare": "gulp build",
Expand Down

0 comments on commit c66b9d6

Please sign in to comment.