Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@travetto/registry

Package Overview
Dependencies
Maintainers
1
Versions
290
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@travetto/registry - npm Package Compare versions

Comparing version 0.0.14 to 0.0.15

4

bootstrap.ts

@@ -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)
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc