Skip to content

Commit

Permalink
Add recommended changelog explainer
Browse files Browse the repository at this point in the history
  • Loading branch information
jasikpark committed Oct 12, 2022
1 parent c1566c2 commit ed62a9c
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .changeset/grumpy-scissors-watch.md
Expand Up @@ -3,3 +3,23 @@
---

Change: `extends` in `overrides` to be consistent with `plugins` behaviour

`overrides.extends` is fixed to make consistency with the `overrides.plugins` behavior and be merged not replaced.

If you would like to keep the previous behavior, you would need to change your config as below:

```diff json
{
- "extends": ["config-a"]
"overrides": [
{
"rules": ["*.module.css"],
"extends": ["config-b"]
},
+ {
+ "rules": ["*.css"],
+ "extends": ["config-a"]
+ },
]
}
```

0 comments on commit ed62a9c

Please sign in to comment.