@travetto/registry
Advanced tools
Comparing version 0.0.14 to 0.0.15
@@ -1,6 +0,4 @@ | ||
import { RootRegistry } from './src/service/root'; | ||
export const init = { | ||
priority: 2, | ||
action: () => RootRegistry.init() | ||
action: () => require('./src/service/root/RootRegistry').init() | ||
}; |
@@ -17,3 +17,3 @@ { | ||
"scripts": {}, | ||
"version": "0.0.14" | ||
"version": "0.0.15" | ||
} |
@@ -72,3 +72,3 @@ import { Compiler } from '@travetto/compiler'; | ||
const keys = new Set([...prev.keys(), ...next.keys()]); | ||
const keys = new Set([...Array.from(prev.keys()), ...Array.from(next.keys())]); | ||
@@ -75,0 +75,0 @@ if (!this.classes.has(file)) { |
@@ -1,4 +0,5 @@ | ||
require('../bootstrap').init().then(x => { | ||
require('./simpleReg'); | ||
require('./simple'); | ||
}) | ||
require('@travetto/base/bootstrap') | ||
.then(x => { | ||
require('./simpleReg'); | ||
require('./simple'); | ||
}); |
@@ -9,6 +9,6 @@ export class Test { | ||
age() { | ||
return 5; | ||
return 6; | ||
} | ||
} | ||
console.log(Test6.__id) |
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
14347