Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit c01a83a

Browse files
committed
chore: give names to badges
1 parent 796bb46 commit c01a83a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/generate-package-table-for-readme.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,15 +73,15 @@ const packageBadges = [
7373
// Version
7474
(gh, npm) => `[![npm](https://img.shields.io/npm/v/${npm}.svg?maxAge=86400&style=flat-square)](//github.com/${gh}/releases)`,
7575
// Deps
76-
(gh, npm) => `[![Dep](https://david-dm.org/${gh}.svg?style=flat-square)](https://david-dm.org/${gh})`,
76+
(gh, npm) => `[![Deps](https://david-dm.org/${gh}.svg?style=flat-square)](https://david-dm.org/${gh})`,
7777
// CI
7878
(gh, npm) => {
7979
// Need to fix the path for jenkins links, as jenkins adds `/job/` between everything
8080
const jenkinsPath = gh.split('/').join('/job/')
81-
return `[![Build Status](https://ci.ipfs.team/buildStatus/icon?job=${gh}/master)](https://ci.ipfs.team/job/${jenkinsPath}/job/master/)`
81+
return `[![jenkins](https://ci.ipfs.team/buildStatus/icon?job=${gh}/master)](https://ci.ipfs.team/job/${jenkinsPath}/job/master/)`
8282
},
8383
// Coverage
84-
(gh, npm) => `[![Coverage Status](https://codecov.io/gh/${gh}/branch/master/graph/badge.svg)](https://codecov.io/gh/${gh})`
84+
(gh, npm) => `[![codecov](https://codecov.io/gh/${gh}/branch/master/graph/badge.svg)](https://codecov.io/gh/${gh})`
8585
]
8686

8787
// Creates the table row for a package

0 commit comments

Comments
 (0)