@travetto/registry
Advanced tools
Comparing version 0.0.39 to 0.0.40
@@ -18,3 +18,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.39" | ||
"version": "0.0.40" | ||
} |
@@ -77,7 +77,7 @@ import { EventEmitter } from 'events'; | ||
async init() { | ||
const entries = await findAppFiles('.ts', f => f.includes('/src/')); | ||
const entries = await findAppFiles('.ts', f => | ||
f.startsWith('src/') && | ||
Compiler.presenceManager.validFile(f)); | ||
const files = entries | ||
.filter(x => Compiler.presenceManager.validFile(x.file)) | ||
.map(x => x.file); | ||
const files = entries.map(x => x.file); | ||
@@ -84,0 +84,0 @@ for (const f of files) { // Load all files, class scanning |
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
17407