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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorRebecca Turner <me@re-becca.org>2017-10-19 04:34:18 +0300
committerKat Marchán <kzm@sykosomatic.org>2017-10-19 04:34:18 +0300
commitfea03d374e89f5aac94936406415744fa0f3c0e4 (patch)
tree49bf6c454f8df9a3f738668b7c1ca225a13871be /doc
parenta93e0a51d3dafc31c809ca28cd7dfa71b2836f86 (diff)
2fa: The great tfa → 2fa rename (#18845)
PR-URL: https://github.com/npm/npm/pull/18845 Credit: @iarna Reviewed-By: @zkat
Diffstat (limited to 'doc')
-rw-r--r--doc/cli/npm-token.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/cli/npm-token.md b/doc/cli/npm-token.md
index dbc7ea9ee..0212dfe2e 100644
--- a/doc/cli/npm-token.md
+++ b/doc/cli/npm-token.md
@@ -5,11 +5,11 @@ npm-token(1) -- Manage your authentication tokens
npm token list [--json|--parseable]
npm token create [--read-only] [--cidr=1.1.1.1/24,2.2.2.2/16]
- npm token delete <id|token>
+ npm token revoke <id|token>
## DESCRIPTION
-This list you list, create and delete authentication tokens.
+This list you list, create and revoke authentication tokens.
* `npm token list`:
Shows a table of all active authentication tokens. You can request this as
@@ -52,7 +52,7 @@ This list you list, create and delete authentication tokens.
+----------------+--------------------------------------+
```
-* `npm token delete <token|id>`:
+* `npm token revoke <token|id>`:
This removes an authentication token, making it immediately unusable. This can accept
both complete tokens (as you get back from `npm token create` and will
find in your `.npmrc`) and ids as seen in the `npm token list` output.