Skip to content

A simple wrapper around gulp-git (Git plugin for gulp), making all commands return streams for better chainability.

License

Notifications You must be signed in to change notification settings

lehni/gulp-git-streamed

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gulp-git-streamed

A simple wrapper around gulp-git (the Git plugin for gulp), making all commands return streams for better chainability:

var gulp = require('gulp'),
    git = require('gulp-git-streamed'),
    bump = require('gulp-bump');

gulp.task('publish', function() {
    var version = '1.2.3',
    	message = 'Release version ' + version;
    return gulp.src([ 'package.json', 'component.json' ])
        .pipe(bump({ version: version }))
        .pipe(git.add())
        .pipe(git.commit(message))
        .pipe(git.tag('v' + version, message));
});

Copyright © 2016, Jürg Lehni.

About

A simple wrapper around gulp-git (Git plugin for gulp), making all commands return streams for better chainability.

Resources

License

Stars

Watchers

Forks

Packages