зеркало из https://github.com/microsoft/boll.git
15 строки
391 B
JavaScript
15 строки
391 B
JavaScript
|
// @ts-check
|
||
|
/** @type {import("beachball").BeachballConfig} */
|
||
|
const config = {
|
||
|
changehint: 'Run "yarn change" to generate a change file',
|
||
|
branch: "main",
|
||
|
groupChanges: true,
|
||
|
ignorePatterns: ["**/fixtures/**", "**/tests/**"],
|
||
|
disallowedChangeTypes: [
|
||
|
"prerelease",
|
||
|
// If a major release is needed, temporarily remove this line.
|
||
|
"major"
|
||
|
]
|
||
|
};
|
||
|
module.exports = config;
|