Shared semantic release config used in Eik modules
npm install @eik/semantic-release-configThis is a semantic-release config to publish Eik modules meant for internal use in the eik-lib organisation.
This configuration is not related to our semantic release plugin.
This shareable configuration uses the following plugins:
- @semantic-release/commit-analyzer
- @semantic-release/release-notes-generator
- @semantic-release/changelog
- @semantic-release/npm
- @semantic-release/github
- @semantic-release/git
``bash`
npm install --save-dev semantic-release @eik/semantic-release-config
In the semantic-release configuration file:
`js`
export default {
extends: "@eik/semantic-release-config",
};
If you add your own plugins you need to include the ones from the shared config.
`js
import config from '@eik/semantic-release-config';
export default {
extends: '@eik/semantic-release-config',
plugins: [
...config.plugins,
[
'extra-plugin',
{ pluginOpts },
],
],
};
``