Skip to content

eik-lib/semantic-release-config

Repository files navigation

@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:

Install

npm install --save-dev semantic-release @eik/semantic-release-config

Usage

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 },
    ],
  ],
};