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

@envelop/graphql-jit

Package Overview
Dependencies
Maintainers
1
Versions
1899
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@envelop/graphql-jit - npm Package Compare versions

Comparing version 1.1.0 to 1.1.1

2

index.d.ts

@@ -8,3 +8,3 @@ import { Plugin } from '@envelop/types';

*/
enableIf?: ((executionArgs: ExecutionArgs) => boolean) | undefined;
enableIf?: ((executionArgs: ExecutionArgs) => boolean | Promise<boolean>) | undefined;
/**

@@ -11,0 +11,0 @@ * Callback triggered in case of GraphQL Jit compilation error.

@@ -27,4 +27,4 @@ 'use strict';

},
onExecute({ args, setExecuteFn }) {
if (!pluginOptions.enableIf || (pluginOptions.enableIf && pluginOptions.enableIf(args))) {
async onExecute({ args, setExecuteFn }) {
if (!pluginOptions.enableIf || (pluginOptions.enableIf && (await pluginOptions.enableIf(args)))) {
setExecuteFn(function jitExecutor() {

@@ -31,0 +31,0 @@ var _a;

{
"name": "@envelop/graphql-jit",
"version": "1.1.0",
"version": "1.1.1",
"sideEffects": false,

@@ -5,0 +5,0 @@ "peerDependencies": {

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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