| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| 12.0.2 source code.tar.gz | 2025-12-26 | 5.5 MB | |
| 12.0.2 source code.zip | 2025-12-26 | 8.7 MB | |
| README.md | 2025-12-26 | 1.7 kB | |
| Totals: 3 Items | 14.1 MB | 0 | |
:rocket: New Feature
- Reanalyze: add parallel processing for CMT file analysis with new
-paralleland-timingflags, plus benchmark infrastructure for performance testing. https://github.com/rescript-lang/rescript/pull/8089
:bug: Bug fix
- Reanalyze: make optional args analysis liveness-aware, preventing false positives when functions are only called from dead code. https://github.com/rescript-lang/rescript/pull/8082
- Fix: do not warn for "editor" field in
rescript.json. https://github.com/rescript-lang/rescript/pull/8084 - Fix
@valshadowing (rewrite usingglobalThis). https://github.com/rescript-lang/rescript/pull/8098 - Fix
@scopeshadowing (rewrite usingglobalThis). https://github.com/rescript-lang/rescript/pull/8100 - Formatter: normalize underscore placeholders in pipe expressions to canonical form (e.g.,
a->map2(_, fn)formats toa->map2(fn)). https://github.com/rescript-lang/rescript/pull/8033 - Fix rewatch panic on duplicate module name. https://github.com/rescript-lang/rescript/pull/8102
- Fix
let?unwrap to use actual variable names from pattern instead of hardcoded "x"/"e". https://github.com/rescript-lang/rescript/issues/8085 - Fix "Ill-formed list of warnings" errors for PPXs with rescript-legacy. https://github.com/rescript-lang/rescript/pull/8103
- Fix gentype generating invalid syntax for exotic / escaped record field names and type names. https://github.com/rescript-lang/rescript/pull/8087
:house: Internal
- Reanalyze: refactor DCE to pure pipeline architecture for order-independence and incremental update support. https://github.com/rescript-lang/rescript/pull/8043