From aca557f5aa653bb7e617109af0f6231fcb5c597e Mon Sep 17 00:00:00 2001 From: Alexis G Date: Fri, 4 Aug 2023 11:26:41 +0200 Subject: [PATCH] chore: Bundlemon no longer monitors the `transpiled/react` folder Following the update of some subdependencies, the `baseDir` parameter of the bundlemon configuration no longer works if it is not filled in or simply with `"."` or `"./"`. The `transpiled/react` folder now having only components, it is more relevant that it is on the application side that the components are monitored by Bundlemon. --- .bundlemonrc | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.bundlemonrc b/.bundlemonrc index 560d257a87..f61a761afa 100644 --- a/.bundlemonrc +++ b/.bundlemonrc @@ -1,23 +1,18 @@ { - "baseDir": ".", + "baseDir": "./dist", "files": [ { - "path": "dist/cozy-ui.min.css", + "path": "cozy-ui.min.css", "maxPercentIncrease": 10 }, { - "path": "dist/cozy-ui.utils.min.css", + "path": "cozy-ui.utils.min.css", "maxPercentIncrease": 10 }, { - "path": "dist/stylesheet.css", + "path": "stylesheet.css", "maxPercentIncrease": 10 } ], - "groups": [ - { - "path": "transpiled/react/**" - } -], "reportOutput": ["github"] }