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
- Uncurried mode must be enabled (i.e. you have not opted-out from it)
15
15
- Your project must not contain any OCaml source code anymore, as support for `.ml` files is removed in this version. However there are ways to convert OCaml syntax with an older ReScript compiler version (see below).
16
16
- The old configuration filename that was deprecated in v11, `bsconfig.json`, is removed. Rename it to `rescript.json`.
17
+
- Minimum supported Node.js version is 20.0.0
17
18
18
19
### Standard library changes
19
20
@@ -41,18 +42,108 @@ Also remove auto opening of `RescriptCore`.
41
42
}
42
43
```
43
44
45
+
if you had `@rescript/std` installed, remove it as well:
46
+
47
+
```shell
48
+
npm uninstall @rescript/std
49
+
```
50
+
51
+
this is replaced by `@rescript/runtime`, which is a installed as a dependency of `rescript` now.
0 commit comments