semantic-release-configuration
Version:
semantic-release-configuration contains the semantic-release configuration for the native web.
18 lines (15 loc) • 426 B
JavaScript
;
const configuration = {
branches: [ 'main' ],
plugins: [
'@semantic-release/commit-analyzer',
'@semantic-release/release-notes-generator',
'@semantic-release/changelog',
'@semantic-release/npm',
'@semantic-release/git'
],
/* eslint-disable no-template-curly-in-string */
tagFormat: '${version}'
/* eslint-enable no-template-curly-in-string */
};
module.exports = configuration;