1. bump-regex
bump RegEx with semver
bump-regex
Package: bump-regex
Created by: stevelacy
Last modified: Mon, 13 Jun 2022 05:18:02 GMT
Version: 4.1.0
License: MIT
Downloads: 59,540
Repository: https://github.com/stevelacy/bump-regex

Install

npm install bump-regex
yarn add bump-regex

bump-regex

Build Status
NPM version

bump regex with semver

Information

Packagebump-regex
Description bump regex with semver
Node Version >= 4.0.0

Usage

Install

 $ npm install --save bump-regex
 
var bump = require('bump-regex');

bump('version: "0.1.2"', function(err, out) {
  // => 'version: "0.1.3"'
});

Options

options.type

Semver version type to bump

Type: `String`
Default: `patch`
Valid values: `major|minor|patch|prerelease`

options.key

Set the versioning key

Type: `String`
Default: `version`

options.keys

Sets multiple versioning keys.

Type: `Array` of `String`s
Default: null

options.case

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`

options.version

Set a specific version to bump to.

Type: `String`
Default: `null`

options.preid

Set the prerelase tag to use

Type: `String`
Default: `null`

options.regex

Set the version selector regex

Type: `RegEx`

options.keepmetadata

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'

Versioning

Versioning Used: Semantic

String, lowercase

  • MAJOR ("major") version when you make incompatible API changes
  • MINOR ("minor") version when you add functionality in a backwards-compatible manner
  • PATCH ("patch") version when you make backwards-compatible bug fixes.
  • PRERELEASE ("prerelease") a pre-release version

Version example

major: 1.0.0
minor: 0.1.0
patch: 0.0.2
prerelease: 0.0.1-2

LICENSE MIT

Dependencies

RELATED POST

10 Must-Know Windows Shortcuts That Will Save You Time

10 Must-Know Windows Shortcuts That Will Save You Time

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Arrays vs Linked Lists: Which is Better for Memory Management in Data Structures?

Navigating AWS Networking: Essential Hacks for Smooth Operation

Navigating AWS Networking: Essential Hacks for Smooth Operation

Achieving Stunning Visuals with Unity's Global Illumination

Achieving Stunning Visuals with Unity's Global Illumination

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code

Nim's Hidden Gems: Lesser-known Features for Writing Efficient Code