Skip to content

Commit

Permalink
chore: Bundlemon no longer monitors the transpiled/react folder
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
Merkur39 committed Aug 4, 2023
1 parent c214261 commit a24370a
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions .bundlemonrc
Original file line number Diff line number Diff line change
@@ -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"]
}

0 comments on commit a24370a

Please sign in to comment.