mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 19:35:27 +02:00
npm-unpublish: add page (#14187)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
This commit is contained in:
parent
c659b7d63f
commit
1c4c70bb97
1 changed files with 24 additions and 0 deletions
24
pages/common/npm-unpublish.md
Normal file
24
pages/common/npm-unpublish.md
Normal file
|
@ -0,0 +1,24 @@
|
|||
# npm unpublish
|
||||
|
||||
> Remove a package from the npm registry.
|
||||
> More information: <https://docs.npmjs.com/cli/v8/commands/npm-unpublish>.
|
||||
|
||||
- Unpublish a specific package version:
|
||||
|
||||
`npm unpublish {{package_name}}@{{version}}`
|
||||
|
||||
- Unpublish the entire package:
|
||||
|
||||
`npm unpublish {{package_name}} --force`
|
||||
|
||||
- Unpublish a package that is scoped:
|
||||
|
||||
`npm unpublish @{{scope}}/{{package_name}}`
|
||||
|
||||
- Specify a timeout period before unpublishing:
|
||||
|
||||
`npm unpublish {{package_name}} --timeout {{time_in_milliseconds}}`
|
||||
|
||||
- To prevent accidental unpublishing, use the `--dry-run` flag to see what would be unpublished:
|
||||
|
||||
`npm unpublish {{package_name}} --dry-run`
|
Loading…
Add table
Reference in a new issue