0.5.3 • Published 6 years ago

gulp-modular-release v0.5.3

Weekly downloads
6
License
MIT
Repository
github
Last release
6 years ago

gulp-modular-release npm version Dependency Status

Modular extension to release projects using git-flow release strategy.

Works well alone or together with gulp-modular.

Installation

npm install gulp-modular-release --save-dev

Integration in gulpfile

var gulp = require('gulp');
var gulpModularRelease = require('gulp-modular-release');

// optionally overwrite default configuration
var config = {

  //// task [`release`] creates a new release
  release: {
  //  versionNumber: argv.v, // the version number of the new release
  //  bumpFiles: ['./package.json', './bower.json'], // write version number to these files, cordova config.xml is also supported
  //  changelogFile: './CHANGELOG.md', // generate changelog in this file
  //  conventionalChangelog: 'angular', // choose preset style like: : 'angular', 'atom', 'eslint', 'jscs', 'jshint'
  //  commitMessage: 'bump version number ' + argv.v, // message of bump commit
  //  tagPrefix: '', // define a prefix like 'v' for the git tag
  //  masterBranch: 'master', // the projects master branch
  //  developBranch: 'develop', // the projects develop branch
  //  releaseBranch: 'release/' + argv.v // the release branch created while releasing
  //  push: false // push change to remote repository
  }
};
  
gulpModularRelease(gulp, config);

Usage

gulp release

or

gulp release -v 1.2.3

or

gulp relrease -b hotfix/foobar

or

gulp relrease -b hotfix/foobar -v 1.2.3

(If no version is specified the next version is generated using conventional-recommended-bump.)

Strategy

  1. checks out develop branch and pulls origin for changes (pull --only-ff)
  2. creates branch release/1.2.3 from develop (just without -b option)
  3. sets version number to bower.json and package.json
  4. generates and writes changelog via conventional changelog to CHANGELOG.md
  5. commits the previous changes
  6. merges release/1.2.3 (or the specified branch) into master and tags it with v1.2.3
  7. merges master into develop
  8. deletes branch release/1.2.3 (or the specified branch)
  9. checks out develop
  10. (optionally) pushes changes to remote repository
0.5.3

6 years ago

0.5.2

6 years ago

0.5.1

7 years ago

0.5.0

8 years ago

0.4.1

8 years ago

0.4.0

8 years ago

0.3.0

8 years ago

0.2.4

8 years ago

0.2.3

8 years ago

0.2.2

8 years ago

0.2.1

8 years ago

0.2.0

8 years ago

0.1.2

8 years ago

0.1.1

8 years ago

0.1.0

8 years ago