This MR contains the following updates:
Package | Type | Update | Change |
---|---|---|---|
css-loader | dependencies | major | 6.11.0 -> 7.0.0 |
v7.0.0
modules.namedExport
option is true
by default if you enable the esModule
optionMigration guide:
Before:
import style from "./style.css";
console.log(style.myClass);
After:
import * as style from "./style.css";
console.log(style.myClass);
modules.exportLocalsConvention
has the value as-is
when the modules.namedExport
option is true
and you don't specify a value5.27.0
18.12.0
This MR has been generated by Renovate Bot.