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
+22
Original file line number
Diff line number
Diff line change
@@ -48,6 +48,28 @@ We use [Conventional Commits](https://www.conventionalcommits.org/en/v1.0.0/).
48
48
49
49
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%.
50
50
51
+
To run your repository's version of the npm cli on your local machine use the following commands:
52
+
53
+
**npm commands:**
54
+
```bash
55
+
node .<command>
56
+
```
57
+
58
+
**npx commands:**
59
+
```bash
60
+
node .exec
61
+
```
62
+
63
+
For example instead of:
64
+
```bash
65
+
npm exec -- <package>
66
+
```
67
+
Use:
68
+
```bash
69
+
node .exec -- <package>
70
+
```
71
+
72
+
51
73
## Performance & Benchmarks
52
74
53
75
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.
0 commit comments