Bump css-loader from 6.10.0 to 7.0.0
Bumps css-loader from 6.10.0 to 7.0.0.
Release notes
Sourced from css-loader's releases.
v7.0.0
7.0.0 (2024-04-04)
⚠ BREAKING CHANGES
- The
modules.namedExport
option istrue
by default if you enable theesModule
optionMigration guide:
Before:
import style from "./style.css"; console.log(style.myClass);
After:
import * as style from "./style.css"; console.log(style.myClass);
- The
modules.exportLocalsConvention
has the valueas-is
when themodules.namedExport
option istrue
and you don't specify a value- Minimum supported webpack version is
5.27.0
- Minimum supported Node.js version is
18.12.0
Features
- The
modules.namedExports
option works fine with anymodules.exportLocalsConvention
values (f96a110)- Added dashed variants for the
modules.exportLocalsConvention
options (40e1668)v6.11.0
6.11.0 (2024-04-03)
Features
Bug Fixes
Changelog
Sourced from css-loader's changelog.
7.0.0 (2024-04-04)
⚠ BREAKING CHANGES
- The
modules.namedExport
option istrue
by default if you enable theesModule
optionMigration guide:
Before:
import style from "./style.css"; console.log(style.myClass);
After:
import * as style from "./style.css"; console.log(style.myClass);
- The
modules.exportLocalsConvention
has the valueas-is
when themodules.namedExport
option istrue
and you don't specify a value- Minimum supported webpack version is
5.27.0
- Minimum supported Node.js version is
18.12.0
Features
- The
modules.namedExports
option works fine with anymodules.exportLocalsConvention
values (f96a110)- Added dashed variants for the
modules.exportLocalsConvention
options (40e1668)6.11.0 (2024-04-03)
Features
Bug Fixes
Commits
-
96e6ff4
chore(release): 7.0.0 -
a2231ae
test: update -
f96a110
feat:namedExports
works fine with anyexportLocalsConvention
value -
9852aa6
docs: update -
40e1668
feat: added dashed variants for theexportLocalsConvention
options -
5d4b1bf
test: fix -
61acac2
refactor!:modules.namedExport
is try by default -
b6ec7fe
refactor: todo for future fixes -
d217012
refactor: code -
6758813
refactor!: minimum supported webpack version is5.27.0
- Additional commits viewable in compare view
Dependabot commands
You can trigger Dependabot actions by commenting on this MR
-
$dependabot recreate
will recreate this MR rewriting all the manual changes and resolving conflicts