Skip to content

Commit 7fd451d

Browse files
committed
Merge branch 'master' into tgriesser/feat/894-context-lifecycle-subscription
* master: (211 commits) Update deps (graphql#2844) resources: use named groups in RegExp (graphql#2840) TS: exclude integration tests from root tsconfig.json (graphql#2838) Flow: remove support for measuring Flow coverage (graphql#2837) CI: test on node 15 (graphql#2836) Update deps (graphql#2835) build: add support for experimental releases (graphql#2831) 15.4.0 Update deps (graphql#2827) Update deps (graphql#2825) integrationTests: add Flow test (graphql#2819) fix: ensure variance of types matches how values are used (graphql#2786) Cleanup '__fixtures__' leftovers (graphql#2818) Convert fixtures to be JS files (graphql#2816) Update deps (graphql#2815) benchmark: extract benchmarks into separate folder and run them on NPM package Update deps (graphql#2810) Update outdated documentation (graphql#2806) Make print() break arguments over multiple lines (graphql#2797) Added check for specific symbols in polyfills/symbols (graphql#2804) ...
2 parents 27fb3f3 + 00eab30 commit 7fd451d

File tree

395 files changed

+16708
-10756
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

395 files changed

+16708
-10756
lines changed

.babelrc-deno.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"plugins": [
3+
"@babel/plugin-transform-flow-strip-types",
4+
["./resources/add-extension-to-import-paths", { "extension": "js" }],
5+
"./resources/inline-invariant"
6+
],
7+
"overrides": [
8+
{
9+
"include": "src/error/GraphQLError.js",
10+
"plugins": [["@babel/plugin-transform-classes", { "loose": false }]]
11+
}
12+
]
13+
}

.babelrc.json

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
{
22
"presets": [["@babel/preset-env", { "targets": { "node": "current" } }]],
3-
"plugins": [
4-
"./resources/inline-invariant",
5-
"@babel/plugin-transform-flow-strip-types"
6-
],
3+
"plugins": ["@babel/plugin-transform-flow-strip-types"],
74
"overrides": [
85
{
9-
"exclude": ["**/__tests__/**/*", "**/__fixtures__/**/*"],
6+
"exclude": ["src/__testUtils__/**/*", "**/__tests__/**/*"],
107
"presets": ["@babel/preset-env"],
118
"plugins": [
129
["@babel/plugin-transform-classes", { "loose": true }],
@@ -16,11 +13,24 @@
1613
],
1714
"env": {
1815
"cjs": {
19-
"presets": [["@babel/preset-env", { "modules": "commonjs" }]]
16+
"presets": [["@babel/preset-env", { "modules": "commonjs" }]],
17+
"plugins": [
18+
[
19+
"./resources/add-extension-to-import-paths",
20+
{ "extension": "js" }
21+
],
22+
"./resources/inline-invariant"
23+
]
2024
},
2125
"mjs": {
2226
"presets": [["@babel/preset-env", { "modules": false }]],
23-
"plugins": ["./resources/add-extension-to-import-paths"]
27+
"plugins": [
28+
[
29+
"./resources/add-extension-to-import-paths",
30+
{ "extension": "mjs" }
31+
],
32+
"./resources/inline-invariant"
33+
]
2434
}
2535
}
2636
},

.eslintignore

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Copied from '.gitignore', please keep it in sync.
2+
/.eslintcache
3+
/node_modules
4+
/coverage
5+
/npmDist
6+
/denoDist
7+
/npm
8+
/deno
9+
10+
# Ignore Flow typings for 3rd-party libraries
11+
/flow-typed
12+
# Ignore TS files inside integration test
13+
/integrationTests/ts/*.ts

0 commit comments

Comments
 (0)