Skip to content

Commit de8d5be

Browse files
authored
docs: Use yarn instead of npm because lockfile is yarn (#323)
1 parent 66e173b commit de8d5be

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Sample-01/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ This sample demonstrates the following use cases:
1212

1313
## Project setup
1414

15-
Use `npm` to install the project dependencies:
15+
Use `yarn` to install the project dependencies:
1616

1717
```bash
18-
npm install
18+
yarn install
1919
```
2020

2121
## Configuration
@@ -51,15 +51,15 @@ To do this, first copy `src/auth_config.json.example` into a new file in the sam
5151
This compiles and serves the React app and starts the backend API server on port 3001.
5252

5353
```bash
54-
npm run dev
54+
yarn run dev
5555
```
5656

5757
## Deployment
5858

5959
### Compiles and minifies for production
6060

6161
```bash
62-
npm run build
62+
yarn run build
6363
```
6464

6565
### Docker build
@@ -69,7 +69,7 @@ To build and run the Docker image, run `exec.sh`, or `exec.ps1` on Windows.
6969
### Run your tests
7070

7171
```bash
72-
npm run test
72+
yarn run test
7373
```
7474

7575
## Frequently Asked Questions

0 commit comments

Comments
 (0)