1.0.1 • Published 12 months ago
@clairview/release-notes-generator v1.0.1
@clairview/release-notes-generator
A release notes generator for changesets used by Clairview
Installation
npm install @clairview/release-notes-generatorUsage
Update the .changeset/config.json file to point to this package:
"changelog": "@clairview/release-notes-generator",The release notes will be generated and printed when running the changesets command to update the versions:
GITHUB_TOKEN=<token> pnpm changeset versionFor local use, you'll need a
GitHub personal access token
with read:user and repo:status permissions.
To force the main version:
CLAIRVIEW_VERSION=10.0.0 GITHUB_TOKEN=<token> pnpm changeset version
# To force a prerelease version you need to be in prerelease mode
pnpm changeset pre enter beta
CLAIRVIEW_VERSION=10.0.0-beta.0 GITHUB_TOKEN=<token> pnpm changeset versionGitHub CI
When running pnpm changeset version in the GitHub CI context, this package will automatically set the following
outputs:
CLAIRVIEW_VERSIONCLAIRVIEW_PRERELEASECLAIRVIEW_PRERELEASE_ID(available ifCLAIRVIEW_PRERELEASEistrue)CLAIRVIEW_RELEASE_NOTES
Special Changesets Features
Notices in Changesets
In addition to the normal content, changeset may include a notice to draw special attention to a change. These notices will be rendered in the release notes under the section "⚠️ Potential Breaking Changes".
Use the following format to add such a notice:
---
'example-package': patch
---
::: notice
Notices can contain any markdown syntax
- An important notice
:::
Normal changeset summary1.0.1
12 months ago