Skip to content

Commit eae8d4e

Browse files
committed
Merge remote-tracking branch 'upstream/source' into patch-1
2 parents 21999db + bdd8a2c commit eae8d4e

File tree

578 files changed

+26549
-7328
lines changed

Some content is hidden

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

578 files changed

+26549
-7328
lines changed

.github/ISSUE_TEMPLATE/bug-report.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
---
2+
name: "Bug Report"
3+
about: Notice something off? Tell us about it here.
4+
labels: bug
5+
---
6+
7+
<!-- If you have any questions while filling out this issue template, feel free to ping our team in the #website channel on the GraphQL Slack (invite link available in CONTRIBUTING.md) -->
8+
9+
### Description
10+
11+
<!-- Tell us about the bug you found -->
12+
13+
### Steps to Reproduce
14+
15+
<!-- Steps for how we can replicate your experience (numbered lists are best) -->
16+
17+
### Expected Result
18+
19+
<!-- What did you expect to happen? -->
20+
21+
### Actual Result
22+
23+
<!-- What actually happened? -->
24+
25+
### Additional Context
26+
27+
<!--
28+
Anything else that will help us better understand, for example:
29+
* Information about your local environment
30+
* Screenshots
31+
* Code snippets
32+
-->
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: "Code Changes"
3+
about: Tell us more about how you want to improve graphql.org
4+
labels: enhancement
5+
---
6+
7+
<!-- If you have any questions while filling out this issue template, feel free to ping our team in the #website channel on the GraphQL Slack (invite link available in CONTRIBUTING.md) -->
8+
9+
### Description
10+
11+
<!-- Tell us all about your idea -->
12+
13+
### Motivation
14+
15+
<!-- Why are you proposing this change? What problem would it be solving? -->
16+
17+
### Collaboration
18+
19+
<!-- Do you want to build this out? Or are you proposing an idea? -->
20+
21+
### Additional Context
22+
23+
<!-- Anything else that will help us understand your vision -->
+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
---
2+
name: "New FAQ Question"
3+
about: Propose a new question to add to our FAQ page
4+
labels: faq
5+
---
6+
7+
<!-- If you have any questions while filling out this issue template, feel free to ping our team in the #website channel on the GraphQL Slack (invite link available in CONTRIBUTING.md) -->
8+
9+
### Question
10+
11+
<!-- The question you think we should add to the FAQ -->
12+
13+
### Proposed answer
14+
15+
<!-- What is the answer you'd expect to see for this question? -->
16+
17+
### Collaboration
18+
19+
<!-- Do you want to write this? Or are you proposing an idea? -->
20+
21+
### Additional Context
22+
23+
<!-- Anything else that you think we should know -->

.github/ISSUE_TEMPLATE/question.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
name: "Question"
3+
about: Ask us anything!
4+
labels: question
5+
---
6+
7+
<!-- Feel free to ask questions here, or you can also find us on the #website channel on the GraphQL Slack (invite link available in CONTRIBUTING.md) -->

.github/PULL_REQUEST_TEMPLATE.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
<!--
2+
Thanks for making a pull request!
3+
4+
Before submitting, please read our contributing guidelines:
5+
https://github.com/graphql/graphql.github.io/blob/source/CONTRIBUTING.md
6+
7+
Have any questions?
8+
Feel free to ask in this PR or you can also find us on the #website channel on the GraphQL Slack (invite link available in CONTRIBUTING.md)
9+
-->
10+
11+
Closes #<issue number>
12+
13+
## Description
14+
15+
<!-- Write a brief description of the changes introduced by this PR -->

.github/workflows/CI.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
on: pull_request
3+
4+
jobs:
5+
tests:
6+
runs-on: ubuntu-latest
7+
8+
steps:
9+
- uses: actions/checkout@v1
10+
- uses: actions/setup-node@v1
11+
with:
12+
node-version: '16.13.0'
13+
14+
- run: yarn install
15+
16+
# Verify it compiles
17+
- run: yarn build
18+
19+
# Doesn't pass ATM
20+
# - run: yarn tsc --noEmit

.gitignore

+74-8
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,76 @@
1-
*.swp
2-
*~
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
8+
old
9+
# Runtime data
10+
pids
11+
*.pid
12+
*.seed
13+
*.pid.lock
14+
15+
# Directory for instrumented libs generated by jscoverage/JSCover
16+
lib-cov
17+
18+
# Coverage directory used by tools like istanbul
19+
coverage
20+
21+
# nyc test coverage
22+
.nyc_output
23+
24+
# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
25+
.grunt
26+
27+
# Bower dependency directory (https://bower.io/)
28+
bower_components
29+
30+
# node-waf configuration
31+
.lock-wscript
32+
33+
# Compiled binary addons (http://nodejs.org/api/addons.html)
34+
build/Release
35+
36+
# Dependency directories
37+
node_modules/
38+
jspm_packages/
39+
40+
# Typescript v1 declaration files
41+
typings/
42+
43+
# Optional npm cache directory
44+
.npm
45+
46+
# Optional eslint cache
47+
.eslintcache
48+
49+
# Optional REPL history
50+
.node_repl_history
51+
52+
# Output of 'npm pack'
53+
*.tgz
54+
55+
# dotenv environment variable files
56+
.env*
57+
58+
# gatsby files
59+
.cache/
60+
public
61+
62+
# Mac files
363
.DS_Store
4-
.nvmrc
5-
node_modules
6-
npm-debug.log
764

8-
/build/
9-
.tmp.*
10-
package-lock.json
65+
# Yarn
66+
yarn-error.log
67+
.pnp/
68+
.pnp.js
69+
# Yarn Integrity file
70+
.yarn-integrity
71+
72+
# Swap files
73+
*.swp
74+
75+
# Codegen stuff
76+
src/__generated__/

.node-version

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
16.13.0

.prettierignore

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.cache
2+
package.json
3+
package-lock.json
4+
public

.prettierrc

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"arrowParens": "avoid",
3+
"semi": false
4+
}

.travis.yml

-13
This file was deleted.

0 commit comments

Comments
 (0)