-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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] Inconsistent package.json repository example use of https
and git+https
#7614
Closed
2 tasks done
Labels
Comments
|
|
wraithgar
pushed a commit
that referenced
this issue
Jun 27, 2024
- closes #7614 ## Issue Examples in the [repository](https://docs.npmjs.com/cli/v10/configuring-npm/package-json#repository) section of the [npm CI > Configuring npm > package.json](https://docs.npmjs.com/cli/v10/configuring-npm/package-json) reference page use the protocol `https`. The examples are: ```json "url": "https://github.com/npm/cli.git" ``` ```json "url": "https://github.com/facebook/react.git" ``` Executing `npm pkg fix` in a repo with a `url` definition and `protocol` using `https` normalizes the protocol to `git+https`. Examples should be aligned with what `npm pkg fix` considers correct and should also be aligned to the list of valid protocols in the [Git URLs as Dependencies](https://docs.npmjs.com/cli/v10/configuring-npm/package-json#git-urls-as-dependencies) section, which states: > `<protocol>` is one of `git`, `git+ssh`, `git+http`, `git+https`, or `git+file`. ## Change 1. `npm/cli.git` Change to ```json "url": "git+https://github.com/npm/cli.git" ``` 2. `facebook/react.git` Since the source example of https://github.com/facebook/react/blob/main/packages/react-dom/package.json does not use the correct `git+https` protocol, use instead ```json "url": "git+https://github.com/npm/cli.git", "directory": "workspaces/libnpmpublish" ```
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Is there an existing issue for this?
This is a CLI Docs Problem, not another kind of Docs Problem.
Description of Problem
The Repository documentation example shows:
https
togit+https
includingcli/package.json
Line 30 in 2273183
The same section (Repository) also shows a similar example:
npm pkg fix
changes the protocol fromhttps
togit+https
If
npm pkg fix
is set up so thathttps
is not accepted as correct, then no examples should be showinghttps
.The Repository section should provide examples:
npm pkg fix
Potential Solution
Change to
Instead of the (incorrect?) Facebook example (using only
https
) use one of the npm/cli examples with a directory. For exampleAffected URL
https://docs.npmjs.com/cli/v10/configuring-npm/package-json#repository
The text was updated successfully, but these errors were encountered: