This 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
npm install --save-dev semantic-release @eik/semantic-release-config
In the semantic-release configuration file:
export default {
extends: "@eik/semantic-release-config",
};
If you add your own plugins you need to include the ones from the shared config.
import config from '@eik/semantic-release-config';
export default {
extends: '@eik/semantic-release-config',
plugins: [
...config.plugins,
[
'extra-plugin',
{ pluginOpts },
],
],
};