lage/beachball.config.js

20 строки
469 B
JavaScript
Исходник Постоянная ссылка Обычный вид История

// @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",
ignorePatterns: [
"benchmark/**",
2023-12-21 11:35:03 +03:00
".*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)
2023-12-21 11:35:03 +03:00
"yarn.lock",
],
};