@travetto/compiler
Advanced tools
Comparing version 0.0.39 to 0.0.40
@@ -22,3 +22,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.39" | ||
"version": "0.0.40" | ||
} |
@@ -60,3 +60,3 @@ import { Watcher, Entry, AppEnv, Handler, findAppFiles } from '@travetto/base'; | ||
init() { | ||
const rootFiles = findAppFiles('.ts', x => x.startsWith('src/') && this.validFile(x)) | ||
const rootFiles = findAppFiles('.ts', x => /(^src\/)|\/src\/|\/index.ts$/.test(x) && this.validFile(x)) | ||
.filter(x => !(x.file in require.cache)) // Pre-loaded items are fundamental and non-reloadable | ||
@@ -63,0 +63,0 @@ .map(x => x.file); |
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
26783