Comparing version 1.4.0 to 1.4.1
@@ -36,5 +36,5 @@ module.exports = (function () { | ||
// make a full path from the basePath (plopfile location) | ||
// if not already an absolute path, make an absolute path from the basePath (plopfile location) | ||
function makePath(p) { | ||
return path.join(basePath, p); | ||
return path.isAbsolute(p) ? p : path.join(basePath, p); | ||
} | ||
@@ -41,0 +41,0 @@ |
{ | ||
"name": "plop", | ||
"version": "1.4.0", | ||
"version": "1.4.1", | ||
"description": "Micro-generator script for doing project specific scaffolding of code structures", | ||
@@ -5,0 +5,0 @@ "main": "plop.js", |
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
34775