@eik/semantic-release-config
v1.0.10
Published
Shared semantic release config used in Eik modules
Readme
@eik/semantic-release-config
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.
Plugins
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
Install
npm install --save-dev semantic-release @eik/semantic-release-configUsage
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 },
],
],
};