You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CONTRIBUTING.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -15,10 +15,10 @@ The module is released automatically from the `main` branch using [semantic-rele
15
15
16
16
## Development setup
17
17
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.
19
19
20
20
```shell
21
-
npm run setup
21
+
npm install # or `pnpm install`, or `yarn install`, etc.
22
22
npm run validate
23
23
```
24
24
@@ -27,13 +27,13 @@ npm run validate
27
27
Run auto-formatting to ensure any changes adhere to the code style of the repository:
28
28
29
29
```shell
30
-
npm run format
30
+
npm run format:delta
31
31
```
32
32
33
33
To run lint and format checks without making any changes:
0 commit comments