1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/npm-version.md
Martin Blume 9b30d1de87
npm-version: add page (#14478)
Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-30 22:09:08 +01:00

24 lines
468 B
Markdown

# npm version
> Bump a node package version.
> More information: <https://docs.npmjs.com/cli/commands/npm-version>.
- Check current version:
`npm version`
- Bump the minor version:
`npm version minor`
- Set a specific version:
`npm version {{version}}`
- Bump the patch version without creating a Git tag:
`npm version patch --no-git-tag-version`
- Bump the major version with a custom commit message:
`npm version major -m "{{Upgrade to %s for reasons}}"`