My semantic-release config
npm install @eliasnorrby/semantic-release-config



My semantic-release config. It extends the default configuration by adding thechangelog and git plugins.
:warning: Subject to change in the future.
npxRun the following command to install and configure semantic-release
``sh`
npx @eliasnorrby/semantic-release-config
This will run a setup script, adding this package to devDependencies and.releaserc.js
writing the config to .
Run setup with the --no-install flag to avoid installing this package as a.releaserc.js
dependency. Your will contain a sample list of plugins for you
to add to instead of extending this package.
Install the package
`sh`
npm i -D @eliasnorrby/semantic-release-config
and add the configuration to .releaserc.js.
`js`
module.exports = require('@eliasnorrby/semantic-release-config')
Just add your overrides to .releaserc.js:
`js``
module.exports = {
...require('@eliasnorrby/semantic-release-config'),
branch: 'production',
}