JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 715
  • Score
    100M100P100Q111054F
  • License MIT

Semantic versioning tool. Apply major, minor and patch to version.

Package Exports

  • minor

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (minor) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Minor [License][LicenseURL] NPM version [Build Status][BuildStatusURL]

[BuildStatusURL]: https://travis-ci.org/coderaiser/minor "Build Status"" [LicenseURL]: https://tldrlegal.com/license/mit-license "MIT License"

Semantic versioning tool. Apply major, minor and patch to version.

Install

npm i minor --save

How to use?

var minor = require('minor'),
    
console.log(minor('patch', '1.0.0'));
/* 1.0.1*/
console.log(minor('minor', '1.0.0'));
/* 1.1.0 */
console.log(minor('major', '1.0.0'));
/* 2.0.0 */

License

MIT