зеркало из https://github.com/microsoft/lage.git
17 строки
407 B
JavaScript
17 строки
407 B
JavaScript
// @ts-check
|
|
/** @type {import('beachball').BeachballConfig}*/
|
|
module.exports = {
|
|
ignorePatterns: [
|
|
'.*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',
|
|
],
|
|
};
|