Skip to content

Commit 592e683

Browse files
Version Packages (#3881)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent c5325dd commit 592e683

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.changeset/warm-sheep-brake.md

-5
This file was deleted.

packages/graphql-language-service-server/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# graphql-language-service-server
22

3+
## 2.14.1
4+
5+
### Patch Changes
6+
7+
- [#3861](https://github.com/graphql/graphiql/pull/3861) [`c5325dd`](https://github.com/graphql/graphiql/commit/c5325ddc30bfe4528c6a238be72ef6db6ae72795) Thanks [@motemen](https://github.com/motemen)! - fix parsing non-graphql documents
8+
39
## 2.14.0
410

511
### Minor Changes

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-language-service-server",
3-
"version": "2.14.0",
3+
"version": "2.14.1",
44
"description": "Server process backing the GraphQL Language Service",
55
"contributors": [
66
"Greg Hurrell <[email protected]> (https://greg.hurrell.net/)",

packages/graphql-language-service-server/src/MessageProcessor.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
*
88
*/
99
// do not change to node:fs import, or it will break mock-fs
10-
import { existsSync, mkdirSync } from 'fs';
10+
import { existsSync, mkdirSync } from 'node:fs';
1111
import { mkdir, readFile, writeFile } from 'node:fs/promises';
1212
import * as path from 'node:path';
1313
import { URI } from 'vscode-uri';

0 commit comments

Comments
 (0)