Skip to content

Commit

Permalink
docs: Added steps for using npm/npx locally to CONTRIBUTING.md (#6643)
Browse files Browse the repository at this point in the history
Co-authored-by: Rahul <122141535+rahulio96@users.noreply.github.com>
  • Loading branch information
AaronHamilton965 and rahulio96 committed Jul 17, 2023
1 parent 02c7ddb commit 36bf5fe
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,28 @@ We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).

We use [`tap`](https://node-tap.org/) for testing & expect that every new feature or bug fix comes with corresponding tests that validate the solutions. Tap also reports on code coverage and it will fail if that drops below 100%.

To run your repository's version of the npm cli on your local machine use the following commands:

**npm commands:**
```bash
node . <command>
```

**npx commands:**
```bash
node . exec
```

For example instead of:
```bash
npm exec -- <package>
```
Use:
```bash
node . exec -- <package>
```


## Performance & Benchmarks

We've set up an automated [benchmark](https://github.com/npm/benchmarks) integration that will run against all Pull Requests; Posting back a comment with the results of the run.
Expand Down

0 comments on commit 36bf5fe

Please sign in to comment.