Files
lobe-chat/.releaserc.cjs
T

19 lines
276 B
JavaScript
Raw Normal View History

2024-11-26 14:48:06 +08:00
const config = require('@lobehub/lint').semanticRelease;
2025-10-30 20:59:48 +08:00
config.branches = [
'main',
{
name: 'next',
prerelease: true,
},
];
2024-11-26 14:48:06 +08:00
config.plugins.push([
'@semantic-release/exec',
{
prepareCmd: 'npm run workflow:changelog',
},
]);
module.exports = config;