https://github.com/dmstr/npm-versioning-test
NPM versioning test repo
https://github.com/dmstr/npm-versioning-test
Last synced: 4 months ago
JSON representation
NPM versioning test repo
- Host: GitHub
- URL: https://github.com/dmstr/npm-versioning-test
- Owner: dmstr
- License: mit
- Created: 2018-06-05T10:29:20.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-06-05T13:29:00.000Z (about 8 years ago)
- Last Synced: 2025-10-17T19:56:50.989Z (8 months ago)
- Size: 11.7 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# npm-versioning-test
NPM versioning test repo
### NPM publish package
npm login
##### Output:
Username: _USERNAME_
Password:
Email: (this IS public) _USEREMAIL_
Logged in as _USERNAME_ on https://registry.npmjs.org/.
##### Publish:
npm publish --access public
### NPM release package
https://docs.npmjs.com/cli/version
##### Custom version
npm version 2.0.0-beta.0
2.0.0-1 -> 2.0.0-beta.0
##### From GIT
npm version from-git
##### Patch:
npm version patch
0.0.1 -> 0.0.2
##### Minor:
npm version minor
0.0.2 -> 0.1.0
##### Major:
npm version major
0.1.0 -> 1.0.0
#### Pre-Versions
##### Prepatch:
npm version prepatch
1.0.0 -> 1.0.1-0
##### Preminor:
npm version preminor
1.0.1-0 -> 1.1.0-0
##### Premajor:
npm version premajor
1.1.0-0 -> 2.0.0-0
##### Prerelease
npm version prerelease
2.0.0-0 -> 2.0.0-1