Skip to content

Commit 5e0ea83

Browse files
committed
removed yarn from docs
Signed-off-by: René <snooz@posteo.de>
1 parent e45f80c commit 5e0ea83

2 files changed

Lines changed: 11 additions & 64 deletions

File tree

.github/.workflows/pages.yml

Lines changed: 0 additions & 59 deletions
This file was deleted.

website/README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,21 +5,27 @@ This website is built using [Docusaurus](https://docusaurus.io/), a modern stati
55
### Installation
66

77
```
8-
$ yarn
8+
$ npm install
9+
```
10+
11+
For reproducible installs in CI, use:
12+
13+
```
14+
$ npm ci
915
```
1016

1117
### Local Development
1218

1319
```
14-
$ yarn start
20+
$ npm run start
1521
```
1622

1723
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
1824

1925
### Build
2026

2127
```
22-
$ yarn build
28+
$ npm run build
2329
```
2430

2531
This command generates static content into the `build` directory and can be served using any static contents hosting service.
@@ -29,13 +35,13 @@ This command generates static content into the `build` directory and can be serv
2935
Using SSH:
3036

3137
```
32-
$ USE_SSH=true yarn deploy
38+
$ USE_SSH=true npm run deploy
3339
```
3440

3541
Not using SSH:
3642

3743
```
38-
$ GIT_USER=<Your GitHub username> yarn deploy
44+
$ GIT_USER=<Your GitHub username> npm run deploy
3945
```
4046

4147
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

0 commit comments

Comments
 (0)