Skip to content

Latest commit

 

History

History
49 lines (36 loc) · 1.52 KB

README.md

File metadata and controls

49 lines (36 loc) · 1.52 KB

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