From f84cb33afde30d568039175c792836469142b746 Mon Sep 17 00:00:00 2001 From: Alexander Myshov Date: Sun, 4 Jun 2017 15:38:17 +0700 Subject: [PATCH 1/2] Fix readme.md --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 64cd670..599c344 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # gulp-gitflow-diff [![Build Status](https://travis-ci.org/myshov/gulp-gitflow-diff.svg?branch=master)](https://travis-ci.org/myshov/gulp-gitflow-diff) Gulp plugin for fitlering files that differ from some base git branch -This plugin is useful when you have a pretty large project with adopted git-flow/github-flow organization of development process. And for example you want to lint files on git push hook. Why do you should lint every single file when only several of them actually have been changed? This plugin will help to filter only those files that actually have been changed relatively of base branch (usually `master` or `origin/master`). +This plugin is useful when you have a pretty large project with adopted git-flow/github-flow organization of development process. And for example you want to lint files on git push hook. Why do you have to lint every single file when only several of them actually have been changed? This plugin will help to filter only those files that actually have been changed relatively of base branch (usually `master` or `origin/master`). # Installation @@ -23,6 +23,10 @@ gulp.task('default', function () { }); ``` +# NPM + +https://www.npmjs.com/package/gulp-gitflow-diff + # License MIT From be25a46ae4cc1460fcc56714e5b3938d45858083 Mon Sep 17 00:00:00 2001 From: Alexander Myshov Date: Sun, 4 Jun 2017 15:39:00 +0700 Subject: [PATCH 2/2] Bump version upto 0.2.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 16ff2d9..1e441cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "gulp-gitflow-diff", - "version": "0.2.0", + "version": "0.2.1", "description": "Gulp plugin for fitlering files that differ from some base git branch", "main": "index.js", "scripts": {