Skip to content

Commit 4e75fbe

Browse files
Changes according comments
1 parent 1df4e2f commit 4e75fbe

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

_blogposts/2024-01-11-release-11-0-0.mdx

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@ The latest docs on [https://rescript-lang.org](/) already use it for the example
3333

3434
### Create-ReScript-App
3535

36-
Previously, the rescript binary was able to initialize new projects itself. But it was required to have a global npm install to use it. This functionality has been removed.
36+
Previously, the ReScript binary was able to initialize new projects itself. But it was required to have a global npm install to use it. This functionality has been removed.
3737

38-
Going forward, create-rescript-app is the new recommended way to setup a new project. It can even be used to quickly add ReScript to an existing project. Have a look at the updated [installation instructions](/docs/manual/latest/installation) for how to use it.
38+
Going forward, `create-rescript-app` is the new recommended way to setup a new project. It can even be used to quickly add ReScript to an existing project. Have a look at the updated [installation instructions](/docs/manual/latest/installation) for how to use it.
3939

4040
### ReScript-React v0.12
4141

42-
In tandem with the new ReScript release, a new version of ReScript-React is released as well. Check out the [corresponding docs](/docs/react/latest/installation).
42+
In tandem with the new ReScript release, a new version of ReScript-React is released as well. It brings support for dynamically loading React components via `React.lazy`, and more. Check out the [corresponding docs](/docs/react/latest/installation).
4343

4444
### ReScript Tools / Documentation Extraction
4545

@@ -50,9 +50,13 @@ npm install --save-dev @rescript/tools
5050
npx rescript-tools doc src/MyFile.res > doc.json
5151
```
5252

53+
The tool generates a JSON structure with all the information you need to generate documentation automatically for your ReScript code. It also comes with ReScript bindings for that JSON. Shortly we'll also have automatic markdown generation, and we're planning a static site generator as well, so getting a nice looking and useful documentation site for your ReScript code is just a command away.
54+
5355
### LSP
5456

55-
And also we now ship a standalone [Language Server binary](https://www.npmjs.com/package/@rescript/language-server), which can be installed and used like so:
57+
Our LSP powers our editor tooling. Historically, it has lived within the VSCode extension. This has been a problem for people who do not use VSCode. So, we've made sure that each new LSP version is [published standalone to NPM](https://www.npmjs.com/package/@rescript/language-server).
58+
59+
This makes using an up-to-date version of the LSP in other editors than VSCode much easier. You can install and use it like so:
5660

5761
```sh
5862
npm install -g @rescript/language-server
@@ -61,7 +65,7 @@ npx rescript-language-server --stdio
6165

6266
## What's next
6367

64-
The following features are planned to be implemented in upcoming versions:
68+
As we now finish up the work on v11, we're looking forward to working on the next ReScript version. Here are some of the features we're planning to focus on in upcoming versions:
6569

6670
- Make JSX usable beyond React:
6771
- [Generic JSX transform](https://github.com/rescript-lang/rescript-compiler/issues/6408)

0 commit comments

Comments
 (0)