Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.md | 2024-04-04 | 1.1 kB | |
v7.0.0 source code.tar.gz | 2024-04-04 | 13.0 MB | |
v7.0.0 source code.zip | 2024-04-04 | 13.1 MB | |
Totals: 3 Items | 26.1 MB | 0 |
7.0.0 (2024-04-04)
⚠ BREAKING CHANGES
- The
modules.namedExport
option istrue
by default if you enable theesModule
option
Migration guide:
Before:
:::js
import style from "./style.css";
console.log(style.myClass);
After:
:::js
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