cli
cli copied to clipboard
the package manager for JavaScript
- The ability to self host your own npm registries which will require releasing npm to be fully open source and instructions on how to deploy your own npm registry...
### Is there an existing issue for this? - [X] I have searched the existing issues ### This issue exists in the latest npm version - [X] I am using...
### Is there an existing issue for this? - [x] I have searched the existing issues ### This issue exists in the latest npm version - [x] I am using...
fix for npm install creating package-lock.json file when accidentally run in the wrong directory in a project. ## References Fixes #7892
### Is there an existing issue for this? - [X] I have searched the existing issues ### This issue exists in the latest npm version - [X] I am using...
Right now, when using `npm run --workspaces {cmd}` or `npm run -w {package1} -w {package2} {cmd}`, npm will always run the command in every single package even if some packages...
### Is there an existing issue for this? - [X] I have searched the existing issues Potentially related issues: - #4104: _almost_ the same but involves multiple direct dependencies -...
Fixes #7622 The linked issue describes the problem in detail, I won't replicate that here.
[BUG] not installing peer dependencies for workspaces if they are not nested inside the root package
### Current Behavior: having 'library-project' with peer-dependencies adjacent to 'main-project' and 'main-project' with workspaces: ['../library-project'] (outside of 'main-project' folder) 'npm install' in 'main-project' is not installing the peer-dependencies example: ```...