$ npm install bump-regex
bump regex with semver
Package | bump-regex |
Description | bump regex with semver |
Node Version | >= 4.0.0 |
$ npm install --save bump-regex
var bump = require('bump-regex');
bump('version: "0.1.2"', function(err, out) {
// => 'version: "0.1.3"'
});
Semver version type to bump
Type: `String`
Default: `patch`
Valid values: `major|minor|patch|prerelease`
Set the versioning key
Type: `String`
Default: `version`
Sets multiple versioning keys.
Type: `Array` of `String`s
Default: null
Set case insensitive matching
This option enables matching a specific Case Sensitive selector
<xml>
<version>nope</version>
<Version>1.2.3</Version>
</xml>
Type: `Boolean`
Default: `false`
Set a specific version to bump to.
Type: `String`
Default: `null`
Set the prerelase tag to use
Type: `String`
Default: `null`
Set the version selector regex
Type: `RegEx`
Keep the metadata of the old version after bumping (exception: you are using options.version)
Type: `Boolean`
Default: `false`
Example:
type: 'prerelease',
preid : 'alphaWhateverTheYWant'
// => '0.0.2-alphaWhateverTheYWant.0'
major: 1.0.0
minor: 0.1.0
patch: 0.0.2
prerelease: 0.0.1-2
© 2010 - cnpmjs.org x YWFE | Home | YWFE