We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b858c6 commit cf023d7Copy full SHA for cf023d7
1 file changed
CONTRIBUTING.md
@@ -13,13 +13,13 @@ When submitting a new bug report, please first [search](https://github.com/npm/c
13
**1. Clone this repository...**
14
15
```bash
16
-$ git clone git@github.com:npm/cli.git npm
+git clone git@github.com:npm/cli.git npm
17
```
18
19
**2. Navigate into project & install development-specific dependencies...**
20
21
22
-$ cd ./npm && node ./scripts/resetdeps.js
+cd ./npm && node ./scripts/resetdeps.js
23
24
25
**3. Write some code &/or add some tests...**
@@ -30,7 +30,7 @@ $ cd ./npm && node ./scripts/resetdeps.js
30
31
**4. Run tests & ensure they pass...**
32
33
-$ node . run test
+node . run test
34
35
36
**5. Open a [Pull Request](https://github.com/npm/cli/pulls) for your work & become the newest contributor to `npm`! 🎉**
@@ -61,9 +61,9 @@ node . exec
61
62
63
For example instead of:
64
-```bash
+```bash
65
npm exec -- <package>
66
-```
+```
67
Use:
68
69
node . exec -- <package>
0 commit comments