Comparing version 0.2.22 to 0.2.23
10
index.js
@@ -5,4 +5,4 @@ | ||
/** | ||
* @version 0.2.22 | ||
* @date 2015-03-10 | ||
* @version 0.2.23 | ||
* @date 2015-03-11 | ||
* @license MIT License | ||
@@ -275,3 +275,3 @@ */ | ||
.replace(/#.+$/m, "# " + new Date().toISOString()) | ||
.replace(/^(.*\bh=)[0-9a-f]*\b/gi, function(_, line) { | ||
.replace(/^(.*\bh=)[0-9a-f]*\b/gim, function(_, line) { | ||
return normalizePath(line + "{hash}", root) | ||
@@ -296,3 +296,3 @@ }) | ||
var data = "" | ||
, git = spawn("git", ["ls-tree", "-rz", "--abbrev=1", "HEAD"]) | ||
, git = spawn("git", ["ls-files", "-sz", "--abbrev=1"]) | ||
@@ -308,3 +308,3 @@ git.stdout.on("data", function (_data) { | ||
index = line.indexOf("\t") | ||
map[line.slice(1 + index)] = line.slice(12, index) | ||
map[line.slice(1 + index)] = line.split(" ")[1] | ||
} | ||
@@ -311,0 +311,0 @@ return map |
{ | ||
"name": "buildman", | ||
"version": "0.2.22", | ||
"version": "0.2.23", | ||
"stability": 1, | ||
@@ -14,2 +14,7 @@ "license": "MIT", | ||
"readmeFilename": "README.md", | ||
"files": [ | ||
"all-licenses.json", | ||
"bin", | ||
"index.js" | ||
], | ||
"scripts": { | ||
@@ -16,0 +21,0 @@ "build": "node index.js --all", |
@version 0.2.22 | ||
@date 2015-03-10 | ||
@version 0.2.23 | ||
@date 2015-03-11 | ||
@stability 1 - Experimental | ||
@@ -5,0 +5,0 @@ |
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
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
5
24672
5
641