-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Add bundlemon config for transpiled 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 `"./"`. As on `cozy-ui` we want to monitor 2 folders at the root of the project, the trick is to modify the main config file to only take care of one folder and create a second one running in parallel to take care of the second folder.
- Loading branch information
Showing
4 changed files
with
21 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{ | ||
"baseDir": "./transpiled", | ||
"files": [ | ||
{ | ||
"path": "react/stylesheet.css", | ||
"maxPercentIncrease": 10 | ||
} | ||
], | ||
"groups": [ | ||
{ | ||
"path": "react/**" | ||
} | ||
], | ||
"reportOutput": ["github"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,14 @@ | ||
{ | ||
"baseDir": ".", | ||
"baseDir": "./dist", | ||
"files": [ | ||
{ | ||
"path": "dist/cozy-ui.min.css", | ||
"path": "cozy-ui.min.css", | ||
"maxPercentIncrease": 10 | ||
}, | ||
{ | ||
"path": "dist/cozy-ui.utils.min.css", | ||
"maxPercentIncrease": 10 | ||
}, | ||
{ | ||
"path": "transpiled/react/stylesheet.css", | ||
"path": "cozy-ui.utils.min.css", | ||
"maxPercentIncrease": 10 | ||
} | ||
], | ||
"groups": [ | ||
{ | ||
"path": "transpiled/react/**" | ||
} | ||
], | ||
"reportOutput": ["github"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters