mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 17:42:07 +02:00

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
24 lines
641 B
Markdown
24 lines
641 B
Markdown
# 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`
|