Skip to content

Commit 5852ba4

Browse files
authored
Update babel parser in the graphql language server (#2176)
1 parent 48c5df6 commit 5852ba4

File tree

3 files changed

+27
-3
lines changed

3 files changed

+27
-3
lines changed

.changeset/odd-cougars-unite.md

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
---
2+
"graphql-language-service-server": patch
3+
"graphql-language-service": patch
4+
---
5+
6+
Update babel parser in the graphql language server

packages/graphql-language-service-server/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@
3030
"graphql": "^15.5.0 || ^16.0.0"
3131
},
3232
"dependencies": {
33-
"@babel/types": "^7.16.0",
34-
"@babel/parser": "^7.13.13",
33+
"@babel/types": "^7.17.0",
34+
"@babel/parser": "^7.17.3",
3535
"dotenv": "8.2.0",
3636
"graphql-config": "^4.1.0",
3737
"graphql-language-service": "^4.1.4",

yarn.lock

+19-1
Original file line numberDiff line numberDiff line change
@@ -758,6 +758,11 @@
758758
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389"
759759
integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w==
760760

761+
"@babel/helper-validator-identifier@^7.16.7":
762+
version "7.16.7"
763+
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.16.7.tgz#e8c602438c4a8195751243da9031d1607d247cad"
764+
integrity sha512-hsEnFemeiW4D08A5gUAZxLBTXpZ39P+a+DGDsHw1yxqyQ/jzFEnxf5uTEGp+3bzAbNOxU1paTgYS4ECU/IgfDw==
765+
761766
"@babel/helper-validator-option@^7.12.17":
762767
version "7.12.17"
763768
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.12.17.tgz#d1fbf012e1a79b7eebbfdc6d270baaf8d9eb9831"
@@ -869,6 +874,11 @@
869874
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.16.4.tgz#d5f92f57cf2c74ffe9b37981c0e72fee7311372e"
870875
integrity sha512-6V0qdPUaiVHH3RtZeLIsc+6pDhbYzHR8ogA8w+f+Wc77DuXto19g2QUwveINoS34Uw+W8/hQDGJCx+i4n7xcng==
871876

877+
"@babel/parser@^7.17.3":
878+
version "7.17.3"
879+
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.17.3.tgz#b07702b982990bf6fdc1da5049a23fece4c5c3d0"
880+
integrity sha512-7yJPvPV+ESz2IUTPbOL+YkIGyCqOyNIzdguKQuJGnH7bg1WTIifuM21YqokFt/THWh1AkCRn9IgoykTRCBVpzA==
881+
872882
"@babel/parser@^7.4.3":
873883
version "7.11.5"
874884
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.11.5.tgz#c7ff6303df71080ec7a4f5b8c003c58f1cf51037"
@@ -2826,6 +2836,14 @@
28262836
"@babel/helper-validator-identifier" "^7.15.7"
28272837
to-fast-properties "^2.0.0"
28282838

2839+
"@babel/types@^7.17.0":
2840+
version "7.17.0"
2841+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.17.0.tgz#a826e368bccb6b3d84acd76acad5c0d87342390b"
2842+
integrity sha512-TmKSNO4D5rzhL5bjWFcVHHLETzfQ/AmbKpKPOSjlP0WoHZ6L911fgoOKY4Alp/emzG4cHJdyN49zpgkbXFEHHw==
2843+
dependencies:
2844+
"@babel/helper-validator-identifier" "^7.16.7"
2845+
to-fast-properties "^2.0.0"
2846+
28292847
"@babel/types@^7.4.0":
28302848
version "7.11.5"
28312849
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.11.5.tgz#d9de577d01252d77c6800cee039ee64faf75662d"
@@ -11247,7 +11265,7 @@ grapheme-splitter@^1.0.4:
1124711265
integrity sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==
1124811266

1124911267
"graphiql@file:packages/graphiql":
11250-
version "1.5.16"
11268+
version "1.5.19"
1125111269
dependencies:
1125211270
"@graphiql/toolkit" "^0.4.2"
1125311271
codemirror "^5.58.2"

0 commit comments

Comments
 (0)