git-log-utils
Advanced tools
Comparing version 0.1.6 to 0.2.0
@@ -0,1 +1,10 @@ | ||
## [0.2.0](https://github.com/littlebee/git-log-utils.git/compare/0.1.6...0.2.0) (2016-03-87) | ||
Thank you @Faleij the critical windows fix. Did I ever tell you, you're my hero. :) | ||
### New Features | ||
* [25c137c](https://github.com/littlebee/git-log-utils.git/commit/25c137cfa9f1c9f223f71ac49c335f4ab6aa0a25) now working on windows! | ||
### Other Commits | ||
* [929370b](https://github.com/littlebee/git-log-utils.git/commit/929370b386669af1705249384efba5a6a04d849d) origin/master | ||
## [0.1.6](https://github.com/littlebee/git-log-utils.git/compare/0.1.5...0.1.6) (2016-03-79) | ||
@@ -2,0 +11,0 @@ remove accidental console.log left behind |
@@ -46,3 +46,3 @@ // Generated by CoffeeScript 1.9.3 | ||
format = ("{\"id\": \"%H\", \"authorName\": \"%an\", \"relativeDate\": \"%cr\", \"authorDate\": %at, " + " \"message\": \"%s\", \"body\": \"%b\", \"hash\": \"%h\"}").replace(/\"/g, "#/dquotes/"); | ||
flags = " --pretty='format:" + format + "' --topo-order --date=local --numstat"; | ||
flags = " --pretty=\"format:" + format + "\" --topo-order --date=local --numstat"; | ||
fstats = Fs.statSync(fileName); | ||
@@ -59,3 +59,5 @@ if (fstats.isDirectory()) { | ||
} | ||
return ChildProcess.execSync(cmd).toString(); | ||
return ChildProcess.execSync(cmd, { | ||
stdio: 'pipe' | ||
}).toString(); | ||
}; | ||
@@ -62,0 +64,0 @@ |
{ | ||
"name": "git-log-utils", | ||
"version": "0.1.6", | ||
"version": "0.2.0", | ||
"description": "Utility methods for parsing git log output", | ||
@@ -5,0 +5,0 @@ "main": "lib/git-log-utils.js", |
Sorry, the diff of this file is not supported yet
424320
2253