fast/beachball.config.js

16 строки
393 B
JavaScript

module.exports = {
disallowedChangeTypes: ["major"],
ignorePatterns: [
".ignore",
".github/",
".prettierrc",
".vscode/",
"jest..js",
"src/e2e/",
"src/tests/",
"src/fixtures/**",
// This one is especially important (otherwise dependabot would be blocked by change file requirements)
"yarn.lock",
],
};