Docs / Language Manual / Migrate to v11
Edit

You are currently looking at the v11.0 docs, which are still a work in progress. If you miss anything, you may find it in the older v10.0 docs here.

Migrate to ReScript 11

Minimal Migration

This guide describes the things to do at least to migrate to ReScript 11.

Disable uncurried mode

If you use currying extensively and don't want to bother with adapting your code (or have dependencies )

JSON
{ "uncurried": false }

Recommended Migration

Uncurried Mode

For uncurried mode to take effect in ReScript 11 there is nothing to configure, it is activated by default.

Adapt suffix

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.

rescript.json

The old configuration filename bsconfig.json is finally deprecated. Rename it to rescript.json.

ReScript Core standard library

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.

Until it's integrated in the compiler, it needs to be installed manually:

CONSOLE
$ npm install @rescript/core

Then add @rescript/core to your rescript.json's dependencies:

DIFF
{ "bs-dependencies": [ + "@rescript/core" ] }

Open it so it's available in the global scope.

DIFF
{ "bsc-flags": [ + "-open RescriptCore", ] }

For a detailed explanation on migration to ReScript Core, please refer to its migration guide. A semi-automated script is available as well.

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.

Removed bindings

Many Node bindings have been removed from the compiler. Please use rescript-nodejs instead or write your own local bindings.

List of all breaking changes

Below is an excerpt from the compiler changelog about all the breaking changes of ReScript 11.

Language and Compiler

Compiler Libraries

Build System and Tools

  • 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

  • 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.

  • Remove obsolete built-in project templates and the "rescript init" functionality. This is replaced by create-rescript-app which is maintained separately.

  • Do not attempt to build ReScript from source on npm postinstall for platforms without prebuilt binaries anymore.

  • 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