@pager/semantic-release-config
v2.5.1
Published
Shareable semantic-release configuration
Maintainers
Keywords
Readme
semantic-release-config
Shareable semantic-release configuration that can be used on your projects.
How to use this
Install with npm i -D @pager/semantic-release-config
Add to extends property of release config in package.json
{
...
"release": {
"extends": "@pager/semantic-release-config"
}
...
}Custom Options
To pass custom options like skipMessage, create a release.config.js file:
'use strict';
const sharedConfig = require('@pager/semantic-release-config');
module.exports = sharedConfig({ skipMessage: '[skip ci]' });Available Options
| Option | Type | Description |
|--------|------|-------------|
| skipMessage | string | Text appended to the release commit message (e.g., [skip ci] to skip CI on release commits) |
