New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@gasket/engine

Package Overview
Dependencies
Maintainers
6
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@gasket/engine - npm Package Compare versions

Comparing version 6.20.3 to 6.20.4

29

lib/engine.d.ts

@@ -95,2 +95,31 @@ declare module '@gasket/engine' {

}
export default class GasketEngine implements Gasket {
constructor(config: GasketConfigFile, context?: { resolveFrom?: string });
config: GasketConfig;
exec<Id extends HookId>(
hook: Id,
...args: Parameters<HookExecTypes[Id]>
): Promise<ResolvedType<ReturnType<HookExecTypes[Id]>>[]>;
execSync<Id extends HookId>(
hook: Id,
...args: Parameters<HookExecTypes[Id]>
): Promise<ResolvedType<ReturnType<HookExecTypes[Id]>>[]>;
execWaterfall<Id extends HookId>(
hook: Id,
...args: Parameters<HookExecTypes[Id]>
): ReturnType<HookExecTypes[Id]>;
execWaterfallSync<Id extends HookId>(
hook: Id,
...args: Parameters<HookExecTypes[Id]>
): ReturnType<HookExecTypes[Id]>;
execApply<Id extends HookId, Return = void>(
hook: Id,
callback: (plugin: Plugin, handler: HookHandler<Id>) => Promise<Return>
): Promise<Return[]>;
execApplySync<Id extends HookId, Return = void>(
hook: Id,
callback: (plugin: Plugin, handler: HookHandler<Id>) => Return
): Return[];
}
}

4

package.json
{
"name": "@gasket/engine",
"version": "6.20.3",
"version": "6.20.4",
"description": "Plugin engine for gasket",

@@ -72,3 +72,3 @@ "main": "lib/engine.js",

},
"gitHead": "a4b47e14f13326ef5219bc1e1efa80d5dce24aba"
"gitHead": "caa9d9252943f00ed834a67066d46b379b585029"
}
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