Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/docs/content/commands/npm-publish.md')
-rw-r--r--deps/npm/docs/content/commands/npm-publish.md25
1 files changed, 25 insertions, 0 deletions
diff --git a/deps/npm/docs/content/commands/npm-publish.md b/deps/npm/docs/content/commands/npm-publish.md
index 0d25d7d29da..946109de404 100644
--- a/deps/npm/docs/content/commands/npm-publish.md
+++ b/deps/npm/docs/content/commands/npm-publish.md
@@ -108,6 +108,7 @@ built.
<!-- AUTOGENERATED CONFIG DESCRIPTIONS START -->
<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
#### `tag`
* Default: "latest"
@@ -122,6 +123,9 @@ command, if no explicit tag is given.
When used by the `npm diff` command, this is the tag used to fetch the
tarball that will be compared with the local files by default.
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `access`
* Default: 'restricted' for scoped packages, 'public' for unscoped packages
@@ -132,6 +136,15 @@ If you want your scoped package to be publicly viewable (and installable)
set `--access=public`. The only valid values for `access` are `public` and
`restricted`. Unscoped packages _always_ have an access level of `public`.
+Note: Using the `--access` flag on the `npm publish` command will only set
+the package access level on the initial publish of the package. Any
+subsequent `npm publish` commands using the `--access` flag will not have an
+effect to the access level. To make changes to the access level after the
+initial publish use `npm access`.
+
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `dry-run`
* Default: false
@@ -145,6 +158,9 @@ commands that modify your local installation, eg, `install`, `update`,
Note: This is NOT honored by other network related commands, eg `dist-tags`,
`owner`, etc.
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `otp`
* Default: null
@@ -156,6 +172,9 @@ when publishing or changing package permissions with `npm access`.
If not set, and a registry response fails with a challenge for a one-time
password, npm will prompt on the command line for one.
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `workspace`
* Default:
@@ -178,6 +197,9 @@ brand new workspace within the project.
This value is not exported to the environment for child processes.
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
#### `workspaces`
* Default: false
@@ -188,6 +210,9 @@ workspaces.
This value is not exported to the environment for child processes.
+<!-- automatically generated, do not edit manually -->
+<!-- see lib/utils/config/definitions.js -->
+
<!-- AUTOGENERATED CONFIG DESCRIPTIONS END -->
### See Also