diff --git a/CHANGELOG.md b/CHANGELOG.md index cd9d2ad85d..a3ddc204ed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,7 @@ - Formatter: normalize underscore placeholders in pipe expressions to canonical form (e.g., `a->map2(_, fn)` formats to `a->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". When using `let? Some(myVar) = ...`, the variable name `myVar` is now properly propagated in early returns. https://github.com/rescript-lang/rescript/issues/8085 +- Fix 'Ill-formed list of warnings' errors for ppx's with rescript-legacy. https://github.com/rescript-lang/rescript/pull/8103 #### :memo: Documentation diff --git a/compiler/bsb/bsb_ninja_rule.ml b/compiler/bsb/bsb_ninja_rule.ml index b5a41f407b..d12f845b20 100644 --- a/compiler/bsb/bsb_ninja_rule.ml +++ b/compiler/bsb/bsb_ninja_rule.ml @@ -145,10 +145,6 @@ let make_custom_rules ~(gentype_config : Bsb_config_types.gentype_config) (match ppx_files with | [] -> () | _ -> - Ext_list.iter ppx_files (fun x -> - match string_of_float (Unix.stat x.name).st_mtime with - | exception _ -> () - | st -> Ext_buffer.add_char_string buf ',' st); Ext_buffer.add_char_string buf ' ' (Bsb_build_util.ppx_flags ppx_files)); (match pp_file with | None -> ()