2.10.1 • Published 4 years ago

gulp-git-streamed v2.10.1

Weekly downloads
291
License
MIT
Repository
github
Last release
4 years ago

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.

2.10.1

4 years ago

2.8.1

6 years ago

2.8.0

6 years ago

2.4.0

7 years ago

1.8.0

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago