2021-12-03 00:34:46 +03:00
|
|
|
// @ts-check
|
|
|
|
/** @type {import('beachball').BeachballConfig}*/
|
|
|
|
module.exports = {
|
2023-12-21 11:35:03 +03:00
|
|
|
groupChanges: true,
|
2024-06-11 02:47:43 +03:00
|
|
|
access: "public",
|
2021-12-03 00:34:46 +03:00
|
|
|
ignorePatterns: [
|
2024-06-25 21:08:16 +03:00
|
|
|
"benchmark/**",
|
2023-12-21 11:35:03 +03:00
|
|
|
".*ignore",
|
|
|
|
".github/**",
|
|
|
|
"beachball.config.js",
|
|
|
|
"decks/**",
|
|
|
|
"docs/**",
|
|
|
|
"jasmine.json",
|
|
|
|
"packages/*/jest.config.js",
|
|
|
|
"packages/*/tests/**",
|
2021-12-03 00:34:46 +03:00
|
|
|
// This one is especially important (otherwise dependabot would be blocked by change file requirements)
|
2023-12-21 11:35:03 +03:00
|
|
|
"yarn.lock",
|
2021-12-03 00:34:46 +03:00
|
|
|
],
|
|
|
|
};
|