|
| 1 | +# commit-convention |
| 2 | + |
| 3 | +form8ion plugin for managing tools related to commit conventions |
| 4 | + |
| 5 | +<!--status-badges start --> |
| 6 | + |
| 7 | +[![Node CI Workflow Status][github-actions-ci-badge]][github-actions-ci-link] |
| 8 | + |
| 9 | +<!--status-badges end --> |
| 10 | + |
| 11 | +## Table of Contents |
| 12 | + |
| 13 | +* [Usage](#usage) |
| 14 | + * [Installation](#installation) |
| 15 | + * [Example](#example) |
| 16 | +* [Contributing](#contributing) |
| 17 | + * [Dependencies](#dependencies) |
| 18 | + * [Verification](#verification) |
| 19 | + |
| 20 | +## Usage |
| 21 | + |
| 22 | +<!--consumer-badges start --> |
| 23 | + |
| 24 | +[![MIT license][license-badge]][license-link] |
| 25 | +[![npm][npm-badge]][npm-link] |
| 26 | +[![Try @form8ion/commit-convention on RunKit][runkit-badge]][runkit-link] |
| 27 | + |
| 28 | +<!--consumer-badges end --> |
| 29 | + |
| 30 | +### Installation |
| 31 | + |
| 32 | +```sh |
| 33 | +$ npm install @form8ion/commit-convention --save-prod |
| 34 | +``` |
| 35 | + |
| 36 | +### Example |
| 37 | + |
| 38 | +#### Import |
| 39 | + |
| 40 | +```javascript |
| 41 | +import {scaffold} from '@form8ion/commit-convention'; |
| 42 | +``` |
| 43 | + |
| 44 | +#### Execute |
| 45 | + |
| 46 | +```javascript |
| 47 | +(async () => { |
| 48 | + await scaffold({projectRoot: process.cwd()}); |
| 49 | +})(); |
| 50 | +``` |
| 51 | + |
| 52 | +## Contributing |
| 53 | + |
| 54 | +<!--contribution-badges start --> |
| 55 | + |
| 56 | +[![PRs Welcome][PRs-badge]][PRs-link] |
| 57 | +[![Commitizen friendly][commitizen-badge]][commitizen-link] |
| 58 | +[![Conventional Commits][commit-convention-badge]][commit-convention-link] |
| 59 | +[![semantic-release: angular][semantic-release-badge]][semantic-release-link] |
| 60 | +[![Renovate][renovate-badge]][renovate-link] |
| 61 | + |
| 62 | +<!--contribution-badges end --> |
| 63 | + |
| 64 | +### Dependencies |
| 65 | + |
| 66 | +```sh |
| 67 | +$ nvm install |
| 68 | +$ npm install |
| 69 | +``` |
| 70 | + |
| 71 | +### Verification |
| 72 | + |
| 73 | +```sh |
| 74 | +$ npm test |
| 75 | +``` |
| 76 | + |
| 77 | +[PRs-link]: http://makeapullrequest.com |
| 78 | + |
| 79 | +[PRs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg |
| 80 | + |
| 81 | +[commitizen-link]: http://commitizen.github.io/cz-cli/ |
| 82 | + |
| 83 | +[commitizen-badge]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg |
| 84 | + |
| 85 | +[commit-convention-link]: https://conventionalcommits.org |
| 86 | + |
| 87 | +[commit-convention-badge]: https://img.shields.io/badge/Conventional%20Commits-1.0.0-yellow.svg |
| 88 | + |
| 89 | +[semantic-release-link]: https://github.com/semantic-release/semantic-release |
| 90 | + |
| 91 | +[semantic-release-badge]: https://img.shields.io/badge/semantic--release-angular-e10079?logo=semantic-release |
| 92 | + |
| 93 | +[renovate-link]: https://renovatebot.com |
| 94 | + |
| 95 | +[renovate-badge]: https://img.shields.io/badge/renovate-enabled-brightgreen.svg?logo=renovatebot |
| 96 | + |
| 97 | +[github-actions-ci-link]: https://github.com/form8ion/commit-convention/actions?query=workflow%3A%22Node.js+CI%22+branch%3Amaster |
| 98 | + |
| 99 | +[github-actions-ci-badge]: https://github.com/form8ion/commit-convention/workflows/Node.js%20CI/badge.svg |
| 100 | + |
| 101 | +[license-link]: LICENSE |
| 102 | + |
| 103 | +[license-badge]: https://img.shields.io/github/license/form8ion/commit-convention.svg |
| 104 | + |
| 105 | +[npm-link]: https://www.npmjs.com/package/@form8ion/commit-convention |
| 106 | + |
| 107 | +[npm-badge]: https://img.shields.io/npm/v/@form8ion/commit-convention.svg |
| 108 | + |
| 109 | +[runkit-link]: https://npm.runkit.com/@form8ion/commit-convention |
| 110 | + |
| 111 | +[runkit-badge]: https://badge.runkitcdn.com/@form8ion/commit-convention.svg |
0 commit comments