Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ For less sensitive information, such as testing data, use a `.npmignore` or `.gi
To reduce the chances of publishing bugs, we recommend testing your package before publishing it to the npm registry. To test your package, run `npm install` with the full path to your package directory:

```
npm install my-package
npm install /path/to/my-test-package
```

## Publishing scoped public packages
Expand All @@ -80,7 +80,7 @@ By default, scoped packages are published with private visibility. To publish a
1. On the command line, navigate to the root directory of your package.

```
cd /path/to/package
cd /path/to/my-test-package
```

2. To publish your scoped public package to the npm registry, run:
Expand Down