@r4lrgx/shared-config
Version:
🔩 My customized Config of semantic release and commitlint and others.
20 lines (17 loc) • 545 B
JavaScript
// @r4lrgx/shared-config v1.0.6
// MIT License
// src/release-config/plugins/notes.ts
var releaseNotesGeneratorPlugin = (options = {}) => {
options = Object.fromEntries(Object.entries(options).filter(([_, v]) => v !== void 0));
const { config, ...customized } = options;
return [
"@semantic-release/release-notes-generator",
{
config: config ?? "@r4lrgx/gitmoji/changelog-config",
...customized
}
];
};
export { releaseNotesGeneratorPlugin };
//# sourceMappingURL=notes.js.map
//# sourceMappingURL=notes.js.map