You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The compiler's ppx is only run when parsing the source file.
For config settings such as directives, this is OK when `bsc` is invoked directly, but not when part of building a project. In the latter case, the ast is compiled separately, and the builtin ppx is not run again before emitting code.
Copy file name to clipboardexpand all lines: CHANGELOG.md
+6
Original file line number
Diff line number
Diff line change
@@ -66,6 +66,12 @@ These are only breaking changes for unformatted code.
66
66
- New internal representation for uncurried functions using built-in type `function$<fun_type, arity>` this avoids having to declare all the possible arities ahead of time https://github.com/rescript-lang/rescript-compiler/pull/5870
67
67
- Better error message for extension point https://github.com/rescript-lang/rescript-compiler/pull/5965
68
68
69
+
# 10.1.4
70
+
71
+
#### :bug: Bug Fix
72
+
73
+
- Fix implementation of directives https://github.com/rescript-lang/rescript-compiler/pull/6052
0 commit comments