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:
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`
|
Reference in New Issue
Block a user