Are there npm version prerelease identifiers?
问题 There is a very handy npm version command. Besides arguments like major , minor and patch it accepts arguments like prerelease , prepatch , etc. It says in the docs that the commands work in accordance with the semver.inc function. These pre commands I have a question about. Say I'm currently at version v1.0.0 . If I run npm version prerelease it will bump version to v1.0.1-0 . Is it possible to provide an extra agrument for a prerelease identifier according to https://github.com/npm/node