UNPKG

@vidavidorra/create-project

Version:
80 lines 3.29 kB
class Badge { _options; constructor(options) { this._options = options; } markdown(key) { const config = this.config[key]; const url = new URL(config.url); url.searchParams.append('style', 'flat-square'); return `[![${config.title}](${url.toString()})](${config.link})`; } get badges() { return Object.keys(this.config); } get config() { return { codeCoverage: { title: 'Code coverage', url: `https://img.shields.io/codecov/c/github/${this.gitHubRepository}?logo=codecov`, link: `https://codecov.io/gh/${this.gitHubRepository}`, }, conventionalCommits: { title: 'Conventional Commits: 1.0.0', url: 'https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow', link: 'https://conventionalcommits.org', }, eslint: { title: 'Linter', url: 'https://img.shields.io/badge/Linter-ESLint-4B32C3?logo=eslint&style=flat-square', link: 'https://eslint.org/', }, license: { title: 'License', url: `https://img.shields.io/github/license/${this.gitHubRepository}`, link: `LICENSE.md`, }, nodeJsVersion: { title: 'Node.js version support', url: `https://img.shields.io/node/v/${this._options.package}?logo=node.js`, link: `https://nodejs.org/en/about/releases/`, }, npmDownloads: { title: 'npm downloads', url: `https://img.shields.io/npm/dm/${this._options.package}?logo=npm`, link: `https://www.npmjs.com/package/${this._options.package}`, }, npmVersion: { title: 'npm version', url: `https://img.shields.io/npm/v/${this._options.package}?logo=npm`, link: `https://www.npmjs.com/package/${this._options.package}`, }, prettier: { title: 'Prettier code style', url: 'https://img.shields.io/badge/code_style-Prettier-ff69b4?logo=prettier', link: 'https://github.com/prettier/prettier', }, renovate: { title: 'Renovate', url: 'https://img.shields.io/badge/Renovate-enabled-brightgreen?logo=renovatebot&logoColor', link: 'https://renovatebot.com', }, semanticRelease: { title: 'semantic-release', url: 'https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079', link: 'https://github.com/semantic-release/semantic-release', }, xo: { title: 'XO code style', url: 'https://img.shields.io/badge/code_style-5ed9c7?logo=xo&labelColor=gray', link: 'https://github.com/xojs/xo', }, }; } get gitHubRepository() { const { githubOwner, githubRepository } = this._options; return `${githubOwner}/${githubRepository}`; } } export { Badge }; //# sourceMappingURL=badge.js.map