Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrueger/changelogjs
A small customizable changelog generator
https://github.com/hrueger/changelogjs
changelog ci generator javascript script tool
Last synced: 12 days ago
JSON representation
A small customizable changelog generator
- Host: GitHub
- URL: https://github.com/hrueger/changelogjs
- Owner: hrueger
- License: mit
- Created: 2020-02-28T03:35:35.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2022-06-25T10:53:04.000Z (over 2 years ago)
- Last Synced: 2024-04-26T14:21:57.825Z (10 months ago)
- Topics: changelog, ci, generator, javascript, script, tool
- Language: JavaScript
- Size: 249 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
README
# ChangelogJS
[![npm](https://img.shields.io/npm/v/@hrueger/changelogjs)](https://npmjs.com/package/@hrueger/changelogjs)
[![Greenkeeper badge](https://badges.greenkeeper.io/hrueger/changelogjs.svg)](https://greenkeeper.io/)
[![License](https://img.shields.io/badge/License-MIT-blue)](./LICENSE.md)
[![GitHub last commit](https://img.shields.io/github/last-commit/hrueger/changelogjs?color=brightgreen)](https://github.com/hrueger/changelogjs/commits)
[![Maintenance](https://img.shields.io/maintenance/yes/2021)](https://github.com/hrueger/changelogjs/commits)This is a small customizable changelog generator.
It generates the changelog based on **commit messages**, not on release notes.
The following modes are avalible:
| HTML | MD | JSON |
| ---- | -- | ---- |
| `html-gh` | `md` | `json` |
| ![Example HTML output](./example_html_output.png) | ![Example Markdown output](./example_md_output.png) | ![Example JSON output](./example_json_output.png) |## Installation
Type `npm install @hrueger/changelogjs --global` into your terminal.## Usage
`changelogjs` without any options. If a `changelogjs.json` file is found in the current folder or above, this is used as the configuration instead of the default values (see below).## Configuration
Create a `changelogjs.json` file ans specify the options below:| Option | Description | Default |
| ------ | ----------- | ------- |
| `title` | The title of the Markdown and HTML page. | `Changelog for your App` |
| `logoUrl` | The url of a Logo image to be displayed at the top of the HTML page. | Some placeholder image. |
| `logoAlt` | The alternative text for the logo. | `Logo` |
| `sort` | A `boolean` value whether the commit messages of one day should be sorted after their type or not. | `true` |
| `ignoreAuthors` | An `array` of `string` values with authors which should be ignored. | `["greenkeeper[bot]"]` |
| `headerLinks` | An array of `{url: "someUrl", text: "text to be displayed", active: false|true}` objects to be displayed as links in the header of the HTML page. | `[{url: "/", text: "Docs"}, {url: "#", text: "Changelog", active: true}]` |
| `footerLinks` | An array of `{url: "someUrl", text: "text to be displayed"}` objects to be displayed as links in the footer of the HTML page. | `[{url: "#", text: "View on GitHub"}, {url: "https://github.com/hrueger/changelogjs", text: "Generated by ChangelogJS"}]` |
| `modes` | An array of `{mode: "md"|"json"|"html-gh", file: "someFileName.ext"}` objects defining which output files with which modes should be generated. See above for the avalible modes. | `[{mode: "md", file: "CHANGELOG.md"}, {mode: "json", file: "CHANGELOG.json"}, {mode: "html-gh", file: "CHANGELOG.html"}]` |## Contribute
Feel free to report any issues on GitHub or add new modes / features and create a pull request!## License
MIT