Skip to content

Latest commit

 

History

History
23 lines (19 loc) · 490 Bytes

to-15.md

File metadata and controls

23 lines (19 loc) · 490 Bytes

Migrating to 15.0.0

Change of overrides.extends behavior

We changed the overrides.extends behavior to merge rather than replace, to make it consistent with the overrides.plugins.

If you would like to keep the previous behavior, you should change your config to:

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