Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ When submitting a new bug report, please first [search](https://github.com/npm/c
**1. Clone this repository...**

```bash
$ git clone [email protected]:npm/cli.git npm
git clone [email protected]:npm/cli.git npm
```

**2. Navigate into project & install development-specific dependencies...**

```bash
$ cd ./npm && node ./scripts/resetdeps.js
cd ./npm && node ./scripts/resetdeps.js
```

**3. Write some code &/or add some tests...**
Expand All @@ -30,7 +30,7 @@ $ cd ./npm && node ./scripts/resetdeps.js

**4. Run tests & ensure they pass...**
```
$ node . run test
node . run test
```

**5. Open a [Pull Request](https://github.com/npm/cli/pulls) for your work & become the newest contributor to `npm`! 🎉**
Expand Down Expand Up @@ -61,9 +61,9 @@ node . exec
```

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