Skip to content

Commit fccbc06

Browse files
Merge pull request #762 from rescript-association/v11-migration-guide-improvements
Some improvements to the v11 migration guide
2 parents 2b3e4ec + 93621ce commit fccbc06

File tree

3 files changed

+124
-74
lines changed

3 files changed

+124
-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
],

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"
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](#minimal-migration) 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+
## Recommended Migration
22+
23+
### Uncurried Mode
24+
25+
For uncurried mode to take effect in ReScript 11 there is nothing to configure, it is activated by default.
26+
27+
### Adapt suffix
28+
29+
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).
30+
31+
### rescript.json
32+
33+
The old configuration filename `bsconfig.json` is deprecated. Rename `bsconfig.json` to `rescript.json` to get rid of the deprecation warning.
34+
35+
### ReScript Core standard library
36+
37+
[ReScript Core](https://github.com/rescript-association/rescript-core) is ReScript's new standard library. It replaces the complete `Js` module as well as some of the more frequently used modules from `Belt` and is recommended to use with uncurried mode.
38+
39+
It will be integrated into the compiler in a future version. In ReScript 11, it still needs to be installed manually:
40+
41+
```console
42+
$ npm install @rescript/core
43+
```
44+
45+
Then add `@rescript/core` to your `rescript.json`'s dependencies:
46+
47+
```diff
48+
{
49+
"bs-dependencies": [
50+
+ "@rescript/core"
51+
]
52+
}
53+
```
54+
55+
Open it so it's available in the global scope.
56+
57+
```diff
58+
{
59+
"bsc-flags": [
60+
+ "-open RescriptCore",
61+
]
62+
}
63+
```
64+
65+
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.
66+
67+
**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.
68+
69+
### Removed bindings
70+
71+
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.
72+
73+
## Minimal Migration
74+
75+
This guide describes the things to do at least to migrate to ReScript 11.
76+
77+
### Disable uncurried mode
78+
79+
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`.
80+
81+
```json
82+
{
83+
"uncurried": false
84+
}
85+
```
86+
87+
For more information, read the Build System Configuration about [uncurried](/docs/manual/latest/build-configuration#uncurried).
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)