Skip to content

Commit 934a7ea

Browse files
committed
fix: remove JIT
1 parent fb57b41 commit 934a7ea

File tree

3 files changed

+10
-85
lines changed

3 files changed

+10
-85
lines changed

Diff for: package-lock.json

+9-81
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@
1919
],
2020
"license": "BSD-3-Clause",
2121
"dependencies": {
22-
"@envelop/graphql-jit": "4.2.1",
2322
"@graphql-tools/stitch": "6.2.4",
2423
"@graphql-tools/utils": "6.2.4",
25-
"@graphql-yoga/node": "2.5.0-canary-592080c.0",
24+
"@graphql-yoga/node": "2.5.0",
2625
"@parse/fs-files-adapter": "1.2.2",
2726
"@parse/push-adapter": "4.1.2",
2827
"bcryptjs": "2.4.3",

Diff for: src/GraphQL/ParseGraphQLServer.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import corsMiddleware from 'cors';
22
import { createServer, renderGraphiQL } from '@graphql-yoga/node';
3-
import { useGraphQlJit } from '@envelop/graphql-jit';
43
import { execute, subscribe } from 'graphql';
54
import { SubscriptionServer } from 'subscriptions-transport-ws';
65
import { handleParseErrors, handleParseHeaders } from '../middlewares';
@@ -39,7 +38,6 @@ class ParseGraphQLServer {
3938
config,
4039
auth,
4140
}),
42-
plugins: [useGraphQlJit()],
4341
multipart: {
4442
fileSize: this._transformMaxUploadSizeToBytes(
4543
this.parseServer.config.maxUploadSize || '20mb'

0 commit comments

Comments
 (0)