From 1e176e4f8240ae6568d7add39a1f9573222647a1 Mon Sep 17 00:00:00 2001 From: Caleb Jasik Date: Wed, 12 Oct 2022 17:33:47 -0500 Subject: [PATCH] Add recommended changelog explainer --- .changeset/grumpy-scissors-watch.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/.changeset/grumpy-scissors-watch.md b/.changeset/grumpy-scissors-watch.md index 1643381d1c..b931e6f5d4 100644 --- a/.changeset/grumpy-scissors-watch.md +++ b/.changeset/grumpy-scissors-watch.md @@ -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"] ++ }, + ] +} +``` \ No newline at end of file