lage/beachball.config.js

20 строки
469 B
JavaScript

// @ts-check
/** @type {import('beachball').BeachballConfig}*/
module.exports = {
groupChanges: true,
access: "public",
ignorePatterns: [
"benchmark/**",
".*ignore",
".github/**",
"beachball.config.js",
"decks/**",
"docs/**",
"jasmine.json",
"packages/*/jest.config.js",
"packages/*/tests/**",
// This one is especially important (otherwise dependabot would be blocked by change file requirements)
"yarn.lock",
],
};