Files
lobehub/.releaserc.cjs
arvinxx e0af4e6c45 💥 feat: try 2.0 next
BREAKING CHANGE: starting V2
2025-10-30 20:59:48 +08:00

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;