Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
// comment and/or posting it when another package has a release (monorepo).
if (!comments.some(comment => !!parse(comment.body))) {
createChangelogOnPr(pr);
}
});
}
// Clean up stale changelog comments, possibly sparing the "no release"
// comment if this package doesn't have a new release.
await pullRequests.forEach(
deleteStaleChangelogs(!nextRelease)(pluginConfig, config)
);
return nextRelease;
},
pluginDefinitions.analyzeCommits.default
);
const generateNotes = wrapPlugin(
NAMESPACE,
'generateNotes',
plugin => async (pluginConfig, config) => {
const { pullRequests } = pluginConfig;
const { nextRelease } = config;
nextRelease.notes = await plugin(pluginConfig, config);
await pullRequests.forEach(
// Create "release" comment
createChangelog(pluginConfig, { ...config, nextRelease })
);
wrapPlugin,
wrapMultiPlugin,
} = require('semantic-release-plugin-decorators');
const {
mapNextReleaseVersion,
withOptionsTransforms,
} = require('./options-transforms');
const NAMESPACE = 'monorepo';
const analyzeCommits = wrapPlugin(
NAMESPACE,
'analyzeCommits',
compose(logPluginVersion('analyzeCommits'), withOnlyPackageCommits),
pluginDefinitions.analyzeCommits.default
);
const generateNotes = wrapMultiPlugin(
NAMESPACE,
'generateNotes',
compose(
logPluginVersion('generateNotes'),
withOnlyPackageCommits,
withOptionsTransforms([mapNextReleaseVersion(versionToGitTag)])
),
pluginDefinitions.generateNotes.default
);
module.exports = {
analyzeCommits,
generateNotes,