BREAKING CHANGE: Each plugin is expected to return an async function or a Promise returning function. The callback parameter is not passed to plugins anymore.
9 lines
183 B
JavaScript
9 lines
183 B
JavaScript
module.exports = {
|
|
verifyConditions: () => {},
|
|
getLastRelease: () => {},
|
|
analyzeCommits: () => {},
|
|
verifyRelease: () => {},
|
|
generateNotes: () => {},
|
|
publish: () => {},
|
|
};
|