Socket
Socket
Sign inDemoInstall

gulp-github-release-maker

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gulp-github-release-maker

Simple gulp plugin to create a GitHub release


Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

#Gulp GitHub release maker

Build Status

Install

npm i --save-dev gulp-github-release-maker

Usage

Add the following to your gulpfile.js:

'use strict';

var gulp = require('gulp');
var githubRelease = require('gulp-github-release-maker');

gulp.task('release:changelog', function (done) {
  githubRelease.showChangelog(done);
});

gulp.task('release:do:patch', function (done) {
  githubRelease.createRelease({ type: 'patch' }, done);
});

gulp.task('release:do:minor', function (done) {
  githubRelease.createRelease({ type: 'minor' }, done);
});

gulp.task('release:do:major', function (done) {
  githubRelease.createRelease({ type: 'major' }, done);
});

The release:changelog command will show the pull requests merged since your last tag.

The release:do:* commands will:

  • show the changelog since last tag
  • ask a user confirmation before doing anything
  • bump your package.json according to the type option
  • commit the change
  • create a tag
  • push the master
  • push tags

FAQs

Package last updated on 25 Nov 2015

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