yeoman-environment
Advanced tools
Comparing version 3.12.0 to 3.12.1
@@ -104,3 +104,6 @@ const fs = require('fs'); | ||
.map(override => override.split(/[\s+=]/)) | ||
.map(([pattern, status = 'skip']) => [path.join(absoluteDir, pattern), status]) | ||
.map(([pattern, status = 'skip']) => { | ||
pattern = pattern.startsWith('!') ? `!${path.join(absoluteDir, pattern.slice(1))}` : path.join(absoluteDir, pattern); | ||
return [pattern, status]; | ||
}) | ||
); | ||
@@ -107,0 +110,0 @@ } |
{ | ||
"name": "yeoman-environment", | ||
"version": "3.12.0", | ||
"version": "3.12.1", | ||
"description": "Handles the lifecyle and bootstrapping of generators in a specific environment", | ||
@@ -5,0 +5,0 @@ "homepage": "http://yeoman.io", |
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
145666
3905