Skip to content

Commit b0546bb

Browse files
committed
update the CONTRIBUTING doc
1 parent c9782d1 commit b0546bb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ The module is released automatically from the `main` branch using [semantic-rele
1515

1616
## Development setup
1717

18-
After cloning the repository, use the `setup` script to install development dependencies and the `validate` script to run all checks and tests to verify your setup.
18+
After cloning the repository, install the project's dependencies and run the `validate` script to run all checks and tests to verify your setup.
1919

2020
```shell
21-
npm run setup
21+
npm install # or `pnpm install`, or `yarn install`, etc.
2222
npm run validate
2323
```
2424

@@ -27,13 +27,13 @@ npm run validate
2727
Run auto-formatting to ensure any changes adhere to the code style of the repository:
2828

2929
```shell
30-
npm run format
30+
npm run format:delta
3131
```
3232

3333
To run lint and format checks without making any changes:
3434

3535
```shell
36-
npm run lint
36+
npm run lint:delta
3737
```
3838

3939
### Test

0 commit comments

Comments
 (0)