Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: graphql/graphiql
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: d48350231868197235f2b80205831c061a084eec
Choose a base ref
...
head repository: graphql/graphiql
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 29e99a86c69457490801d97bb9139499a9fef755
Choose a head ref
Loading
Showing 531 changed files with 37,802 additions and 16,564 deletions.
1 change: 0 additions & 1 deletion .browserslistrc
Original file line number Diff line number Diff line change
@@ -3,4 +3,3 @@ Firefox ESR
not dead
not IE 11
not ios 10
maintained node versions
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
@@ -5,8 +5,8 @@
"linked": [],
"access": "public",
"baseBranch": "main",
"updateInternalDependencies": "patch",
"ignore": ["example-*"],
"updateInternalDependencies": "patch",
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
"updateInternalDependents": "always"
}
19 changes: 14 additions & 5 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,22 @@
codecov:
notify:
require_ci_to_pass: no
require_ci_to_pass: yes

coverage:
precision: 2
round: down
range: "30...100"
range: '30...100'

status:
project: no
patch: no
changes: no
project:
default:
target: 50% # the minimum required coverage value
threshold: .1% # the leniency in hitting the target, allows 1% drop
patch:
default:
informational: true

comment: # this is a top-level key
layout: 'reach, diff, flags, files'
behavior: default
require_changes: true # if true: only post the comment if coverage changes
70 changes: 5 additions & 65 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -1,68 +1,8 @@
################################################################################
#
# First things first; we need to ignore our built files. To achive this, we
# have to do a bit of an ignore dance where we ignore everything, and then
# specifically un-ignore the source code, configuration files, etc.
#
# First: ignore FILES (not folders!)
/{packages,examples}/**/*.{js,jsx,ts,tsx}

#
# Now un-ignore source code, tests, configuration, etc
!/{packages,examples}/*/{src,cypress,resources}/**

# CRA example has its own eslint config
examples/graphiql-create-react-app

!.eslintrc.js
!babel.config.js
#
# End of the ignore dance.
#
################################################################################

# Regular eslintignore configuration follows.

# ESLint automatically ignores node_modules _in the root_, so we only need to specify nested node_modules
**/node_modules
/packages/graphiql/graphiql.*

# Build artifacts
**/flow-typed
**/dist
**/out
**/esm
**/bundle
**/typedoc
**/monaco
**/webpack
packages/graphiql/webpack
packages/graphiql/storybook
packages/graphiql/lsp
packages/graphiql/monaco
packages/graphiql/*.html
**/renderExample.js
**/*.min.js
**/coverage/
.nyc_output/
.changeset/

# ignore working-group dir markdown so it's easier for people to edit from the UI
working-group/

# codemirror's build artefacts are exported from the package root
**/codemirror-graphql/variables
**/codemirror-graphql/utils
**/codemirror-graphql/results
**/codemirror-graphql/jump.*
**/codemirror-graphql/mode.*
**/codemirror-graphql/lint.*
**/codemirror-graphql/info.*
**/codemirror-graphql/hint.*
**/codemirror-graphql/cm6-legacy
**/codemirror-graphql/__tests__

# Vendored files
/packages/graphiql/test/vendor

.changeset
storybook-static/
packages/codemirror-graphql/src/__tests__/schema-kitchen-sink.graphql
CHANGELOG.md
**/CHANGELOG.md
packages/vscode-graphql-syntax/tests/__fixtures__/
Loading