@travetto/config
Advanced tools
Comparing version 0.0.34 to 0.0.35
@@ -19,3 +19,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.34" | ||
"version": "0.0.35" | ||
} |
@@ -40,4 +40,4 @@ import * as path from 'path'; | ||
// Load all namespaces from core | ||
const files = findAppFiles('.yml', x => x.includes('node_modules/@travetto') && x.includes('/config/')) | ||
.concat(findAppFiles('.yml', x => x.startsWith('config/'))) | ||
const files = findAppFiles('.yml', | ||
x => /^(node_modules\/@travetto\/[^/]+\/)?config\/[^/]+.yml$/.test(x)) | ||
.map(x => ({ name: x.file, data: readFileSync(x.file).toString() })); | ||
@@ -44,0 +44,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
8148