@halospv3/hce.shared-config
Version:
Automate commit message quality, changelogs, and CI/CD releases. Its `main` entry point is a Semantic Release config. Functions and classes are exposed for customization. An ESLint config, a Commitlint config, and addl. resources for .NET projects are als
20 lines (19 loc) • 573 B
JavaScript
//#region src/setupGitPluginSpec.default.ts
/**
* As specified at https://github.com/semantic-release/git#options
* To use, assign or create an object with the same (but mutable) properties and deeply-copy to the object
* @satisfies { GitOptions }
*/
const DefaultOptions = {
assets: [
"README.md",
"CHANGELOG.md",
"package.json",
"package-lock.json",
"npm-shrinkwrap.json"
],
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
};
//#endregion
export { DefaultOptions };
//# sourceMappingURL=setupGitPluginSpec.default.mjs.map