Socket
Socket
Sign inDemoInstall

inceptum

Package Overview
Dependencies
421
Maintainers
3
Versions
142
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 0.8.10 to 0.8.11

2

dist/app/BaseApp.d.ts

@@ -51,2 +51,4 @@ import { Context } from '../ioc/Context';

register(...plugins: PluginImplemenation[]): void;
getRegisteredPluginNames(): string[];
hasRegisteredPlugin(name: string): boolean;
private runLifecycleMethodOnPlugins(method);

@@ -53,0 +55,0 @@ start(): Promise<any>;

@@ -38,2 +38,8 @@ "use strict";

}
getRegisteredPluginNames() {
return this.plugins.map((plugin) => plugin.name);
}
hasRegisteredPlugin(name) {
return !!this.plugins.find((plugin) => plugin.name === name);
}
runLifecycleMethodOnPlugins(method) {

@@ -40,0 +46,0 @@ return this.plugins.reduce(async (previous, plugin) => {

2

package.json
{
"name": "inceptum",
"version": "0.8.10",
"version": "0.8.11",
"description": "hipages take on the foundational library for enterprise-grade apps written in NodeJS",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc