fix(deps): update dependency css-loader to v7
This MR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| css-loader | dependencies | major | 6.11.0 -> 7.0.0 |
Release Notes
webpack-contrib/css-loader (css-loader)
v7.0.0
⚠ BREAKING CHANGES
- The
modules.namedExportoption istrueby default if you enable theesModuleoption
Migration guide:
Before:
import style from "./style.css";
console.log(style.myClass);
After:
import * as style from "./style.css";
console.log(style.myClass);
- The
modules.exportLocalsConventionhas the valueas-iswhen themodules.namedExportoption istrueand you don't specify a value - Minimum supported webpack version is
5.27.0 - Minimum supported Node.js version is
18.12.0
Features
Configuration
-
If you want to rebase/retry this MR, check this box
This MR has been generated by Renovate Bot.