From 29a69fbe8fbae8bc59c1fa1a55856427674a2b8a Mon Sep 17 00:00:00 2001 From: Oleksandr Fediashov Date: Fri, 22 Apr 2022 17:12:20 +0200 Subject: [PATCH] chore: add "ignorePatterns" to beachball.config.js (#101) --- beachball.config.js | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/beachball.config.js b/beachball.config.js index 1472bfb16..cd0b91616 100644 --- a/beachball.config.js +++ b/beachball.config.js @@ -5,5 +5,14 @@ */ module.exports = { gitTags: false, + ignorePatterns: [ + '**/__fixtures__/**', + '**/*.test.{ts,tsx}', + '**/*.stories.tsx', + '**/.eslintrc.json', + '**/jest.config.js', + '**/project.json', + '**/README.md', + ], hooks: require('./beachball.hooks'), };