| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-04-10 | 1.0 kB | |
| v5.106.1 source code.tar.gz | 2026-04-10 | 9.5 MB | |
| v5.106.1 source code.zip | 2026-04-10 | 13.6 MB | |
| Totals: 3 Items | 23.1 MB | 1 | |
Patch Changes
-
Fix two ES5-environment regressions in the anonymous default export
.namefix-up: the generated code referenced an undeclared__WEBPACK_DEFAULT_EXPORT__binding causingReferenceError, and usedReflect.definePropertywhich is not available in pre-ES2015 runtimes. The fix-up now references the real assignment target and usesObject.defineProperty/Object.getOwnPropertyDescriptor. (by @xiaoxiaojx in #20796) -
Prevent
!importantfrom being renamed as a local identifier in CSS modules. (by @xiaoxiaojx in #20798) -
Use compiler context instead of module context for CSS modules local ident hashing to avoid hash collisions when files with the same name exist in different directories. (by @xiaoxiaojx in #20799)