Skip to content

Commit cc1aed1

Browse files
committed
Convert from docusaurus to nextra
1 parent 2562ce0 commit cc1aed1

Some content is hidden

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

48 files changed

+18253
-15886
lines changed

.eslintrc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -470,7 +470,7 @@ overrides:
470470
parser: '@typescript-eslint/parser'
471471
parserOptions:
472472
sourceType: module
473-
project: ['tsconfig.json']
473+
project: ['./tsconfig.json', './website/tsconfig.json']
474474
plugins:
475475
- '@typescript-eslint'
476476
- 'eslint-plugin-tsdoc'

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -192,7 +192,7 @@ jobs:
192192
uses: actions/setup-node@v2
193193
with:
194194
cache: npm
195-
node-version-file: '.node-version'
195+
node-version: '.node-version'
196196

197197
- name: Install Dependencies
198198
run: npm ci --ignore-scripts
@@ -247,7 +247,7 @@ jobs:
247247
uses: actions/setup-node@v2
248248
with:
249249
cache: npm
250-
node-version-file: '.node-version'
250+
node-version: 18
251251

252252
- name: Install Dependencies
253253
run: npm ci --ignore-scripts

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,3 +14,4 @@
1414
/npmDist
1515
/denoDist
1616
/websiteDist
17+
website/.next

.prettierignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
/npmDist
88
/denoDist
99
/websiteDist
10+
.next

cspell.yml

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ ignorePaths:
99
- tsconfig.json
1010
- benchmark/github-schema.graphql
1111
- benchmark/github-schema.json
12+
- website/icons
13+
- website/css
1214
overrides:
1315
- filename: '**/docs-old/APIReference-*.md'
1416
ignoreRegExpList: ['/href="[^"]*"/']
@@ -52,6 +54,58 @@ words:
5254
- deno
5355
- codecov
5456

57+
# Website tech
58+
- Nextra
59+
- headlessui
60+
- Fastify
61+
- svgr
62+
- ruru
63+
64+
# used as href anchors
65+
- graphqlerror
66+
- syntaxerror
67+
- formaterror
68+
- graphqlschema
69+
- graphqlscalartype
70+
- graphqlobjecttype
71+
- graphqlinterfacetype
72+
- graphqluniontype
73+
- graphqlenumtype
74+
- graphqlinputobjecttype
75+
- graphqllist
76+
- graphqlnonnull
77+
- graphqlint
78+
- graphqlfloat
79+
- graphqlstring
80+
- graphqlboolean
81+
- graphqlid
82+
- getlocation
83+
- isinputtype
84+
- isoutputtype
85+
- isleaftype
86+
- iscompositetype
87+
- isabstracttype
88+
- getnullabletype
89+
- getnamedtype
90+
- introspectionquery
91+
- buildclientschema
92+
- buildschema
93+
- printschema
94+
- printintrospectionschema
95+
- buildastschema
96+
- typefromast
97+
- astfromvalue
98+
- typeinfo
99+
- isvalidjsvalue
100+
- isvalidliteralvalue
101+
- specifiedrules
102+
- Wordmark
103+
- codeofconduct
104+
- graphqlconf
105+
106+
# website words
107+
- runtimes
108+
55109
# TODO: remove bellow words
56110
- QLID # GraphQLID
57111
- QLJS # GraphQLJS

0 commit comments

Comments
 (0)