forked from graphql/graphql-js
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
merge latest upstream changes (#104)
* execute: fix spec section names in comments (graphql#3376) * lexer-tests: Use tildas as invalid characters (graphql#3377) * Preserve non-error values thrown from resolvers (graphql#3384) * Add support for Node17 (graphql#3386) * Update package-lock.json (graphql#3387) * Drop "eslint-plugin-istanbul" and implement as internal ESLint rule (graphql#3388) * package.json: Drop unused '@babel/eslint-parser' (graphql#3389) * Update deps (graphql#3390) * Enable '@typescript-eslint/switch-exhaustiveness-check' rule (graphql#3391) * Remove $FlowFixMe comments (graphql#3392) * typeFromAST: use exhaustive switch and remove invariant (graphql#3396) * Update doc examples to reflect the current API (graphql#3393) * Switch coverage from nyc to c8 (graphql#3398) * Update deps (graphql#3399) * expectJSON: improve readability (graphql#3400) * tests: Improve formating of strings with 'dedent' tag (graphql#3401) * ci: add check that 'package-lock.json' doesn't have conflicts (graphql#3403) * github/workflows: simplify npm cache setup (graphql#3404) * Use for '--ignore-scripts' for all `npm ci` & `npm install` (graphql#3405) * Simplify code by replacing Object.entries with Object.keys (graphql#3406) * ci: add check for unnessary duplicates in package-lock.json (graphql#3407) * update lockfile * Fix ci merge * fix package-lock file ...starting again from most current graphql-js Co-authored-by: Alex Reilly <[email protected]> Co-authored-by: Ivan Goncharov <[email protected]> Co-authored-by: Paul Serraino <[email protected]>
- Loading branch information
1 parent
719ef94
commit 62d68bf
Showing
33 changed files
with
4,303 additions
and
5,147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
{ | ||
"all": true, | ||
"include": ["src/"], | ||
"exclude": [ | ||
"src/**/index.ts", | ||
"src/**/*-fuzz.ts", | ||
"src/jsutils/Maybe.ts", | ||
"src/jsutils/ObjMap.ts", | ||
"src/jsutils/PromiseOrValue.ts", | ||
"src/utilities/typedQueryDocumentNode.ts" | ||
], | ||
"clean": true, | ||
"temp-directory": "coverage", | ||
"report-dir": "coverage", | ||
"skip-full": true, | ||
"reporter": ["json", "html", "text"], | ||
"check-coverage": true, | ||
"branches": 100, | ||
"lines": 100, | ||
"functions": 100, | ||
"statements": 100 | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.