Skip to content

Commit 8e8ed4e

Browse files
Some improvements to the v11 migration guide
1 parent 48bbca5 commit 8e8ed4e

File tree

4 files changed

+129
-74
lines changed

4 files changed

+129
-74
lines changed

data/sidebar_manual_latest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"Overview": [
33
"introduction",
44
"installation",
5-
"migrate-to-v11-and-uncurried-mode",
5+
"migrate-to-v11",
66
"editor-plugins",
77
"try"
88
],

next.config.mjs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,11 @@ const config = {
102102
destination: "/docs/manual/v10.0.0/unboxed",
103103
permanent: true,
104104
},
105+
{
106+
source: "/docs/manual/latest/migrate-to-v11-and-uncurried-mode",
107+
destination: "/docs/manual/latest/migrate-to-v11",
108+
permanent: true,
109+
},
105110
];
106111
},
107112
};

pages/docs/manual/latest/migrate-to-v11-and-uncurried-mode.mdx

Lines changed: 0 additions & 73 deletions
This file was deleted.
Lines changed: 123 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
1+
---
2+
title: "Migrate to v11"
3+
description: "Instructions on upgrading to ReScript 11 with the new uncurried mode"
4+
canonical: "/docs/manual/latest/migrate-to-v11"
5+
---
6+
7+
# Migrate to ReScript 11
8+
9+
## Foreword
10+
11+
The ReScript community is proud to introduce ReScript V11 which comes with a ton of new features but also removes a lot of bulk.
12+
A migration to it can be very straightforward, but it can also take some time, depending on your code style or what dependencies you use.
13+
14+
Please have a look at the full [set of breaking changes](#list-of-all-breaking-changes) below to be able to decide whether this is a task you want to undertake. There is also the possibilty to opt-out of uncurried mode for now, which is probably the most fundamental change of this release. That and other new and notable features are discussed in the following blogposts:
15+
16+
- [Better interop with customizable variants](/blog/improving-interop)
17+
- [Enhanced Ergonomics for Record Types](/blog/enhanced-ergonomics-for-record-types)
18+
- [First-class Dynamic Import Support](/blog/first-class-dynamic-import-support)
19+
- [Uncurried Mode](/blog/uncurried-mode)
20+
21+
## Minimal Migration
22+
23+
This guide describes the things to do at least to migrate to ReScript 11.
24+
25+
### Disable uncurried mode
26+
27+
If you use currying extensively and don't want to bother with adapting your code, or have dependencies that just don't work with uncurried mode yet, just set it to false in your `rescript.json`.
28+
29+
```json
30+
{
31+
"uncurried": false
32+
}
33+
```
34+
35+
For more information, read the Build System Configuration about [uncurried](/docs/manual/latest/build-configuration#uncurried).
36+
37+
## Recommended Migration
38+
39+
### Uncurried Mode
40+
41+
For uncurried mode to take effect in ReScript 11 there is nothing to configure, it is activated by default.
42+
43+
### Adapt suffix
44+
45+
ReScript 11 now allows having arbitrary suffixes in the generated JavaScript files. However it is still recommended to stick to using `.res.js`, `.res.mjs` or `.res.cjs`. For more information, read the Build System Configuration about [suffixes](/docs/manual/latest/build-configuration#suffix).
46+
47+
### rescript.json
48+
49+
The old configuration filename `bsconfig.json` is finally deprecated. Rename it to `rescript.json`.
50+
51+
### ReScript Core standard library
52+
53+
There is a new standard library in development that can already be installed called ReScript Core. It replaces the complete `Js` module as well as some of the more frequently used modules from `Belt` and is the recommended standard library to use with uncurried mode. At a later stage it will be integrated into the compiler while `Belt` will be maintaned as a separate npm package.
54+
55+
Until it's integrated in the compiler, it needs to be installed manually:
56+
57+
```console
58+
$ npm install @rescript/core
59+
```
60+
61+
Then add `@rescript/core` to your `rescript.json`'s dependencies:
62+
63+
```diff
64+
{
65+
"bs-dependencies": [
66+
+ "@rescript/core"
67+
]
68+
}
69+
```
70+
71+
Open it so it's available in the global scope.
72+
73+
```diff
74+
{
75+
"bsc-flags": [
76+
+ "-open RescriptCore",
77+
]
78+
}
79+
```
80+
81+
For a detailed explanation on migration to ReScript Core, please refer to its [migration guide](https://github.com/rescript-association/rescript-core#migration). A semi-automated script is available as well.
82+
83+
**Note**: ReScript Core API docs will be added to this documentation platform at a later stage. For now check out the `.resi` files in the repository or, more conveniently, read the docs for a certain module or function directly in the editor tooling.
84+
85+
### Removed bindings
86+
87+
Many Node bindings have been removed from the compiler. Please use [rescript-nodejs](https://github.com/TheSpyder/rescript-nodejs) instead or write your own local bindings.
88+
89+
## List of all breaking changes
90+
91+
Below is an excerpt from the compiler changelog about all the breaking changes of ReScript 11.
92+
93+
### Language and Compiler
94+
95+
- Add smart printer for pipe chains. https://github.com/rescript-lang/rescript-compiler/pull/6411 (the formatter will reformat existing code in certain cases)
96+
- Parse `assert` as a regular function. `assert` is no longer a unary expression. Example: before `assert 1 == 2` is parsed as `(assert 1) == 2`, now it is parsed as `assert(1 == 2)`. https://github.com/rescript-lang/rescript-compiler/pull/6180
97+
- Remove support for the legacy Reason syntax. Existing Reason code can be converted to ReScript syntax using ReScript 9 as follows:
98+
- `npx rescript@9 convert <reason files>`
99+
- Curried after uncurried is not fused anymore: `(. x) => y => 3` is not equivalent to `(. x, y) => 3` anymore. It's instead equivalent to `(. x) => { y => 3 }`.
100+
Also, `(. int) => string => bool` is not equivalen to `(. int, string) => bool` anymore.
101+
These are only breaking changes for unformatted code.
102+
- Exponentiation operator `**` is now right-associative. `2. ** 3. ** 2.` now compile to `Math.pow(2, Math.pow(3, 2))` and not anymore `Math.pow(Math.pow(2, 3), 2)`. Parentheses can be used to change precedence.
103+
- Stop mangling object field names. If you had objects with field names containing "\__" or leading "_", they won't be mangled in the compiled JavaScript and represented as it is without changes. https://github.com/rescript-lang/rescript-compiler/pull/6354
104+
- `$$default` is no longer exported from the generated JavaScript when using default exports. https://github.com/rescript-lang/rescript-compiler/pull/6328
105+
- `-bs-super-errors` flag has been deprecated along with Super_errors. https://github.com/rescript-lang/rescript-compiler/pull/6243
106+
- Remove unsafe `` j`$(a)$(b)` `` interpolation deprecated in compiler version 10 https://github.com/rescript-lang/rescript-compiler/pull/6068
107+
- `@deriving(jsConverter)` not supported anymore for variant types https://github.com/rescript-lang/rescript-compiler/pull/6088
108+
- New representation for variants, where the tag is a string instead of a number. https://github.com/rescript-lang/rescript-compiler/pull/6088
109+
110+
### Compiler Libraries
111+
112+
- Fixed name collision between the newly defined Js.Json.t and the variant constructor in the existing Js.Json.kind type. To address this, the usage of the existing Js.Json.kind type can be updated to Js.Json.Kind.t. https://github.com/rescript-lang/rescript-compiler/pull/6317
113+
- Remove rudimentary node bindings and undocumented `%node` extension. https://github.com/rescript-lang/rescript-compiler/pull/6285
114+
- `@rescript/react` >= 0.12.0-alpha.2 is now required because of the React.fragment's children type fix. https://github.com/rescript-lang/rescript-compiler/pull/6238
115+
- Remove deprecated module `Printexc`
116+
117+
### Build System and Tools
118+
119+
- Update watcher rules to recompile only on config and `*.res`/`*.resi`/`*.ml`/`.mli` file changes. Solves the issue of unnecessary recompiles on `.css`, `.ts`, and other unrelated file changes. https://github.com/rescript-lang/rescript-compiler/pull/6420
120+
- Made pinned dependencies transitive: if _a_ is a pinned dependency of _b_ and _b_ is a pinned dependency of _c_, then _a_ is implicitly a pinned dependency of _c_. This change is only breaking if your build process assumes non-transitivity.
121+
- Remove obsolete built-in project templates and the "rescript init" functionality. This is replaced by [create-rescript-app](https://github.com/rescript-lang/create-rescript-app) which is maintained separately.
122+
- Do not attempt to build ReScript from source on npm postinstall for platforms without prebuilt binaries anymore.
123+
- GenType: removed support for `@genType.as` for records and variants which has become unnecessary. Use the language's `@as` instead to channge the runtime representation without requiring any runtime conversion during FFI. https://github.com/rescript-lang/rescript-compiler/pull/6099 https://github.com/rescript-lang/rescript-compiler/pull/6101

0 commit comments

Comments
 (0)