react-git-info
Advanced tools
Comparing version 2.0.0 to 2.0.1
{ | ||
"name": "react-git-info", | ||
"version": "2.0.0", | ||
"version": "2.0.1", | ||
"description": "Git commit information for your react app", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -10,3 +10,3 @@ const { createMacro } = require('babel-plugin-macros'); | ||
// The format is specified in https://git-scm.com/docs/git-log#_pretty_formats | ||
let gitCommand = 'git log --format=%D%n%h%n%H%n%cI%n%B -n 1 HEAD'; | ||
let gitCommand = 'git log --format=%D%n%h%n%H%n%cI%n%B -n 1 HEAD --'; | ||
if (process.platform === 'win32') { | ||
@@ -13,0 +13,0 @@ gitCommand = gitCommand.replace(/%/g, '^%'); // need to escape percents in batch |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
6049