Skip to content

Commit a6546e2

Browse files
authored
Merge pull request #226 from reason-association/bobzhang-patch-2
tweak to match changes in 9.0.1
2 parents 216e934 + 056590e commit a6546e2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

_blogposts/2021-02-09-release-9-0.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ We are happy to announce ReScript 9.0!
1515

1616
ReScript is a robustly typed language that compiles to efficient and human-readable JavaScript. It comes with one of the fastest build toolchains and offers first class support for interoperating with ReactJS and other existing JavaScript code.
1717

18-
Use `npm` to install the newest [9.0.0 release](https://www.npmjs.com/package/bs-platform/v/9.0.0) with the following command:
18+
Use `npm` to install the newest [9.0.1 release](https://www.npmjs.com/package/bs-platform/v/9.0.1) with the following command:
1919

2020
```
21-
npm install [email protected].0 --save-dev
21+
npm install [email protected].1 --save-dev
2222
```
2323

2424
You can also try our new release in the [Online Playground](/try).
@@ -56,7 +56,7 @@ Belt.Array.forEach([1, 2, 3], (num) => Js.log(num))
5656

5757
```js
5858
// Note the import path starting with "@rescript/std"
59-
import * as Array from "@rescript/std/lib/es6/belt_Array.mjs";
59+
import * as Array from "@rescript/std/lib/es6/belt_Array.js";
6060

6161
Belt_Array.forEach([
6262
1,

0 commit comments

Comments
 (0)