Skip to content

Commit

Permalink
Data update 2024-10-17 18-16-49
Browse files Browse the repository at this point in the history
  • Loading branch information
1010bots committed Oct 17, 2024
1 parent 5ba6770 commit e20d263
Show file tree
Hide file tree
Showing 4 changed files with 80 additions and 4 deletions.
8 changes: 5 additions & 3 deletions docs/en/common/2to3.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
layout: page
title: common/2to3 (English)
description: "Automated Python 2 to 3 code conversion."
content_hash: c97409bc5a1159a5c11b69cb2ef6e5dd6a1b4f48
last_modified_at: 2024-04-19
content_hash: fbbc0c9954df785c90b0d2dcc8d25c7019c00d83
last_modified_at: 2024-10-17
related_topics:
- title: বাংলা version
url: /bn/common/2to3.html
Expand Down Expand Up @@ -37,7 +37,9 @@ tldri18n_status: 2
# 2to3

Automated Python 2 to 3 code conversion.
More information: <https://docs.python.org/3/library/2to3.html>.
This module has been deprecated since 3.11 and has been removed since 3.13.
For reference, see: <https://github.com/python/cpython/blob/8d42e2d915c3096e7eac1c649751d1da567bb7c3/Doc/whatsnew/3.13.rst?plain=1#L188>.
More information: <https://manned.org/2to3>.

- Display the changes that would be performed without performing them (dry-run):

Expand Down
25 changes: 25 additions & 0 deletions docs/en/common/crane-cp.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
layout: page
title: common/crane-cp (English)
description: "This command is an alias of `crane copy`."
content_hash: cb20859347f0487662ac908f12d6c866cdd4ba23
last_modified_at: 2024-10-17
tldri18n_status: 0
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/crane-cp.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># crane cp

This command is an alias of `crane copy`.
More information: <https://github.com/google/go-containerregistry/blob/main/cmd/crane/doc/crane_copy.md>.

- View documentation for the original command:

`tldr crane copy`
49 changes: 49 additions & 0 deletions docs/en/common/npm-token.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
layout: page
title: common/npm-token (English)
description: "Manage and generate authentication tokens for the npm registry."
content_hash: 6d9264bfba4d69f35b1f80242d1faaf6be0f5cde
last_modified_at: 2024-10-17
tldri18n_status: 0
---

### Outdated Translation
This entry is currently considered outdated and its contents may not be up-to-date with other translations.

Please considering fixing this issue by contributing to the [tldr-pages](https://github.com/tldr-pages/tldr) project directly.

<a class="btn btn-primary" href="{{ site.url }}/en/common/npm-token.html">View original (English) version</a>
<a class="btn" href="https://github.com/tldr-pages/tldr/blob/main/CONTRIBUTING.md">Contributing Guidelines</a>

<hr># npm token

Manage and generate authentication tokens for the npm registry.
More information: <https://docs.npmjs.com/cli/commands/npm-token>.

- Create a new authentication token:

`npm token create`

- List all tokens associated with an account:

`npm token list`

- Delete a specific token using its token ID:

`npm token revoke `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">token_id</span>

- Create a token with read-only access:

`npm token create --read-only`

- Create a token with publish access:

`npm token create --publish`

- Automatically configure an npm token in your global .npmrc file when you log in:

`npm login`

- Remove a token from the global configuration:

`npm token revoke `<span class="tldr-var badge badge-pill bg-dark-lm bg-white-dm text-white-lm text-dark-dm font-weight-bold">token_id</span>
2 changes: 1 addition & 1 deletion source

0 comments on commit e20d263

Please sign in to comment.