Skip to content

Commit dee28dd

Browse files
committed
Replace yarn with npm on README
1 parent 7fd99dd commit dee28dd

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This code is used to generate https://reasonml.github.io. It pulls in files from
44

55
`website/` contains the JS, CSS, images and other files (and some markdown files in `blog` which are separated from `docs/`; it's not too important).
66

7-
`cd website && yarn && yarn start` to start the development server & watcher.
7+
`cd website && npm install && npm run start` to start the development server & watcher.
88

9-
Don't use `yarn build`. It's mostly for debugging.
9+
Don't use `npm run build`. It's mostly for debugging.
1010

1111
In the end, we spit out normal HTML with all but a few critical JS dependencies removed, including ReactJS itself. It's a full static website: super lightweight, portable, unfancy, but good looking. And it works with JS turned off!
1212

@@ -32,10 +32,10 @@ Changes from the `source` branch are automatically picked into `master` branch b
3232
# Building the Playground
3333

3434
```
35-
cd website && yarn
35+
cd website && npm install
3636
```
3737

38-
For modifying the actual try playground source code, run `yarn bundle-try-playground:dev` to start a watcher. Once you're done, run `yarn bundle-try-playground:prod` once.
38+
For modifying the actual try playground source code, run `npm run bundle-try-playground:dev` to start a watcher. Once you're done, run `npm run bundle-try-playground:prod` once.
3939

4040
## Building with custom BuckleScript/etc
4141

0 commit comments

Comments
 (0)