1.12.0 • Published 3 years ago

@grupoboticario/news-fragments v1.12.0

Weekly downloads
368
License
Unlicense
Repository
github
Last release
3 years ago

This package was moved to

This package was moved to https://www.npmjs.com/package/news-fragments

Quality Gate Coverage Code Smells Vulnerabilities Security Rating

News fragments is a plugin for release-it that helps you to generate a changelog file.

Basically, you need to specify a folder to be your center of fragments that will generate a custom changelog when released. After that, you'll create files with the desired extension with quick messages inside that folder to better understand what will come up on the new version of your software.

Setup

In release-it config at package.json, create a @grupoboticario/news-fragments key-pair to override the default config - e.g.

"plugins": {
  "@grupoboticario/news-fragments": {}
}

Config

Default config

{
  "changelogFile": "CHANGELOG.md",
  "changelogDateFormat": "YYYY-MM-DD",
  "changelogTemplate": changelogTemplate,
  "fragmentsFolder": "fragments",
  "fragmentsTypes": [
    { "title": "Features", "extension": "feature" },
    { "title": "Bugfixes", "extension": "bugfix" },
    { "title": "Documentation", "extension": "doc" },
    { "title": "Deprecations and Removals", "extension": "removal" },
    { "title": "Misc", "extension": "misc" }
  ]
}

Default changelog template

# [{{newVersion}}] - ({{bumpDate}})
{{#fragments}}
## {{title}}
{{#each fragmentEntries}}
* {{this}}
{{/each}}
{{/fragments}}

Config params

  • changelogFile: A path to the file that will center your changelog.
  • changelogDateFormat: The date format that will be send to changelog template.
  • changelogTemplate: A handlebars template that will be used to render your changelog file content.
  • fragmentsFolder: A path to the folder that the fragments should be stored.
  • fragmentsTypes: An array containing a collection of objects with the title of changelog section and the extension of fragment types.

See this plugin in action by checking our CHANGELOG.md

CLI

news-fragments --help
1.12.0

3 years ago

1.11.0

3 years ago

1.9.2

3 years ago

1.10.0

3 years ago

1.9.1

3 years ago

1.9.0

3 years ago

1.8.0

3 years ago

1.7.0

4 years ago

1.6.0

4 years ago

1.5.0

4 years ago

1.4.0

4 years ago

1.3.0

4 years ago

1.2.0

4 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

0.0.0

4 years ago