Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: suggest dogfooding npm when developing it #5159

Merged
merged 1 commit into from
Jul 13, 2022
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
6 changes: 3 additions & 3 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ $ git clone git@github.com:npm/cli.git npm
**2. Navigate into project & install development-specific dependencies...**

```bash
$ cd ./npm && npm install
$ cd ./npm && node . install
```

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

**4. Run tests & ensure they pass...**
```
$ npm 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 All @@ -42,7 +42,7 @@ We use [`tap`](https://node-tap.org/) for testing & expect that every new featur
**You can find out what the current test coverage percentage is by running...**

```bash
$ npm run check-coverage
$ node . run check-coverage
```

## Performance & Benchmarks
Expand Down