mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
19 lines
276 B
JavaScript
19 lines
276 B
JavaScript
const config = require('@lobehub/lint').semanticRelease;
|
|
|
|
config.branches = [
|
|
'main',
|
|
{
|
|
name: 'next',
|
|
prerelease: true,
|
|
},
|
|
];
|
|
|
|
config.plugins.push([
|
|
'@semantic-release/exec',
|
|
{
|
|
prepareCmd: 'npm run workflow:changelog',
|
|
},
|
|
]);
|
|
|
|
module.exports = config;
|