Skip to content

Commit ba5b789

Browse files
committed
squash everything
1 parent 7e2c777 commit ba5b789

File tree

501 files changed

+18728
-4216
lines changed

Some content is hidden

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

501 files changed

+18728
-4216
lines changed

.eslintrc.cjs

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module.exports = {
22
root: true,
33
overrides: [
44
{
5-
files: ["**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}"],
5+
files: ["website/**/*.{js,jsx,cjs,mjs,ts,tsx,cts,mts}"],
66
extends: ["plugin:tailwindcss/recommended"],
77
parser: "@typescript-eslint/parser",
88
parserOptions: {
@@ -12,6 +12,16 @@ module.exports = {
1212
rules: {
1313
"tailwindcss/classnames-order": "off",
1414
},
15+
settings: {
16+
tailwindcss: {
17+
config: "website/tailwind.config.ts",
18+
cssFiles: [
19+
"website/node_modules/nextra-theme-docs/dist/style.css",
20+
"website/src/globals.css",
21+
],
22+
whitelist: ["roboto-mono"],
23+
},
24+
},
1525
},
1626
],
1727
}

.gitignore

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ build/Release
3535

3636
# Dependency directories
3737
node_modules/
38-
jspm_packages/
3938

4039
# Typescript v1 declaration files
4140
typings/
@@ -57,7 +56,7 @@ typings/
5756

5857
# gatsby files
5958
.cache/
60-
public/
59+
/public/
6160

6261
!static/img/__og-image/
6362
static/img/__og-image/*
@@ -67,7 +66,6 @@ static/img/__og-image/*
6766
.DS_Store
6867

6968
# Yarn
70-
yarn-error.log
7169
.pnp/
7270
.pnp.js
7371
# Yarn Integrity file
@@ -80,3 +78,6 @@ yarn-error.log
8078
src/__generated__/
8179

8280
.idea/
81+
.next/
82+
static/sitemap.xml
83+
website/out/

.prettierrc

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
{
22
"arrowParens": "avoid",
33
"semi": false,
4-
"singleQuote": false
5-
}
4+
"singleQuote": false,
5+
"overrides": [
6+
{
7+
"files": "*.svg",
8+
"options": {
9+
"parser": "html"
10+
}
11+
}
12+
]
13+
}

CONTRIBUTING.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,9 +49,9 @@ Run the `start` script to launch the server:
4949
yarn start
5050
```
5151

52-
Finally, open [http://localhost:8000](http://localhost:8000) to view it in the browser.
52+
Finally, open http://localhost:8000 to view it in the browser.
5353

54-
The GraphQL website is built with [Gatsby](https://www.gatsbyjs.com/docs/). This means that a hot-reloading development environment will be accessible by default.
54+
The GraphQL website is built with [Gatsby](https://gatsbyjs.com/docs). This means that a hot-reloading development environment will be accessible by default.
5555

5656
### Branching
5757

@@ -70,7 +70,7 @@ Active development for graphql.org happens on the `source` branch. Be sure to cr
7070

7171
### Publishing the updated site
7272

73-
Your changes will be merged into the `source` branch. Then, the CI will automatically publish a new version of http://graphql.org via [Netlify](https://docs.netlify.com/).
73+
Your changes will be merged into the `source` branch. Then, the CI will automatically publish a new version of https://graphql.org via [Netlify](https://docs.netlify.com).
7474

7575
## Updating content
7676

@@ -161,6 +161,6 @@ This repository is managed by EasyCLA. Project participants must sign the free (
161161

162162
To initiate the signature process please open a PR against this repo. The EasyCLA bot will block the merge if we still need a membership agreement from you.
163163

164-
You can find [detailed information here](https://github.com/graphql/graphql-wg/tree/main/membership). If you have issues, please email [operations@graphql.org](mailto:operations@graphql.org).
164+
You can find [detailed information here](https://github.com/graphql/graphql-wg/tree/main/membership). If you have issues, please email operations@graphql.org.
165165

166166
If your company benefits from GraphQL and you would like to provide essential financial support for the systems and people that power our community, please also consider membership in the [GraphQL Foundation](https://foundation.graphql.org/join).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ This repository is managed by EasyCLA. Project participants must sign the free (
2626

2727
To initiate the signature process please open a PR against this repo. The EasyCLA bot will block the merge if we still need a membership agreement from you.
2828

29-
You can find [detailed information here](https://github.com/graphql/graphql-wg/tree/main/membership). If you have issues, please email [operations@graphql.org](mailto:operations@graphql.org).
29+
You can find [detailed information here](https://github.com/graphql/graphql-wg/tree/main/membership). If you have issues, please email operations@graphql.org.
3030

3131
If your company benefits from GraphQL and you would like to provide essential financial support for the systems and people that power our community, please also consider membership in the [GraphQL Foundation](https://foundation.graphql.org/join).

package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"private": true,
44
"version": "0.0.0",
55
"scripts": {
6-
"build": "gatsby build",
6+
"build": "cd website && pnpm i && pnpm build",
77
"develop": "gatsby develop",
88
"format": "yarn format:check --write",
99
"format:check": "prettier --cache --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
@@ -58,21 +58,21 @@
5858
},
5959
"devDependencies": {
6060
"@svgr/webpack": "^8.0.0",
61-
"@tailwindcss/typography": "0.5.9",
61+
"@tailwindcss/typography": "0.5.10",
6262
"@types/codemirror": "5.60.7",
6363
"@types/prismjs": "1.26.0",
6464
"@types/react-tooltip": "^4.2.4",
6565
"@types/string-similarity": "^4.0.0",
6666
"@typescript-eslint/parser": "5.59.7",
6767
"autoprefixer": "10.4.14",
6868
"eslint": "8.42.0",
69-
"eslint-plugin-tailwindcss": "3.12.0",
69+
"eslint-plugin-tailwindcss": "3.14.0",
7070
"gatsby-plugin-canonical-urls": "5.12.0",
7171
"gatsby-plugin-postcss": "6.10.0",
7272
"gatsby-plugin-svgr": "^3.0.0-beta.0",
7373
"postcss": "8.4.23",
74-
"prettier": "2.8.8",
75-
"tailwindcss": "3.3.2",
74+
"prettier": "3.2.4",
75+
"tailwindcss": "3.4.1",
7676
"typescript": "5.1.3"
7777
}
7878
}

src/Containers/Sections/BringYourOwnCode/index.tsx

Lines changed: 0 additions & 108 deletions
This file was deleted.

src/Containers/Sections/PowerFulTools/index.tsx

Lines changed: 0 additions & 40 deletions
This file was deleted.

src/Containers/Sections/WhosUsing/index.tsx

Lines changed: 0 additions & 86 deletions
This file was deleted.

0 commit comments

Comments
 (0)