35 lines
558 B
TypeScript
Raw Normal View History

2020-05-11 11:33:34 +02:00
/* eslint-disable max-len */
export function get_readme (
software: string,
description: string,
dev: boolean,
license: string,
author: string
): string {
2020-05-11 12:18:39 +02:00
const uri = encodeURIComponent (software);
2020-05-11 11:33:34 +02:00
return `# ${software}
2020-05-11 12:18:39 +02:00
[![Package quality](https://packagequality.com/shield/${uri}.svg)](https://packagequality.com/#?package=${uri})
2020-05-11 11:33:34 +02:00
> ${description}
## Installation
npm:
> npm i --save${dev ? '-dev' : ''} ${software}
yarn:
> yarn add ${dev ? '--dev' : ''} ${software}
## Usage
TODO: Add usage
## License
${license} © ${author}
`;
}