Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gulp-ccr-bump

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-ccr-bump

Bump project version programmatically or interactively. A cascading configurable gulp recipe for gulp-chef.

  • 0.1.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

gulp-ccr-bump

Bump project version programmatically or interactively. A cascading configurable gulp recipe for gulp-chef.

Install

$ npm install --save-dev gulp-chef gulp-ccr-bump

Recipe

Bump Version

Ingredients

API

config.interactive

Enable interactive operation. Once enabled, values in "version" and "type" are ignored.

config.version

Specific version to bump to. Once specified, "type" value is ignored.

config.type

Method of updating.

Valid values are: "prerelease", "patch", "minor", and "major".

config.preid

Prerelease id.

config.field

Field to update. Defaults to "version".

Usage

var gulp = require('gulp');
var chef = require('gulp-chef');

var meals = chef({
	bumpi: {
		description: 'bump version interactively',
		recipe: 'bump',
		interactive: true
	},
	bumpm: {
		description: 'bump major version',
		recipe: 'bump',
		type: 'major'
	},
	bumpn: {
		description: 'bump minor version',
		recipe: 'bump',
		type: 'minor'
	},
	bump: {
		description: 'bump patch version'
	}
});

gulp.registry(meals);

Keywords

FAQs

Package last updated on 31 Jan 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc