Skip to content

Commit 965b7cb

Browse files
committed
all in one
1 parent 5634476 commit 965b7cb

Some content is hidden

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

72 files changed

+2194
-789
lines changed

.github/workflows/ci-cd-pull-request.yml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@ jobs:
2020

2121
- name: Set up env
2222
uses: the-guild-org/shared-config/setup@main
23-
with:
24-
nodeVersion: 20
25-
packageManager: pnpm
2623

2724
- name: Install dependencies
2825
run: pnpm install
@@ -44,9 +41,6 @@ jobs:
4441

4542
- name: Set up env
4643
uses: the-guild-org/shared-config/setup@main
47-
with:
48-
nodeVersion: 20
49-
packageManager: pnpm
5044

5145
- name: Install dependencies
5246
run: pnpm install
@@ -68,9 +62,6 @@ jobs:
6862

6963
- name: Set up env
7064
uses: the-guild-org/shared-config/setup@main
71-
with:
72-
nodeVersion: 20
73-
packageManager: pnpm
7465

7566
- name: Install dependencies
7667
run: pnpm install
@@ -93,9 +84,6 @@ jobs:
9384

9485
- name: Set up env
9586
uses: the-guild-org/shared-config/setup@main
96-
with:
97-
nodeVersion: 20
98-
packageManager: pnpm
9987

10088
- name: Install dependencies
10189
run: pnpm install

.github/workflows/next-js-bundle-analysis.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,6 @@ jobs:
2929

3030
- name: Set up env
3131
uses: the-guild-org/shared-config/setup@main
32-
with:
33-
nodeVersion: 20
34-
packageManager: pnpm
3532

3633
- name: Restore Next.js Build
3734
uses: actions/cache@v3

.github/workflows/opengraph.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,6 @@ jobs:
2525

2626
- name: Set up env
2727
uses: the-guild-org/shared-config/setup@main
28-
with:
29-
nodeVersion: 20
30-
packageManager: pnpm
3128

3229
- name: Deploy
3330
working-directory: ./packages/og-image

.github/workflows/website-integrity.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@ jobs:
2222

2323
- name: Set up env
2424
uses: the-guild-org/shared-config/setup@main
25-
with:
26-
nodeVersion: 20
27-
packageManager: pnpm
2825

2926
- name: Build Site
3027
run: pnpm build

.node-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
22.5.1

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20
1+
22.5.1

.prettierignore

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,8 @@
33
out/
44
pnpm-lock.yaml
55
dist/
6-
website/remote-files/*.json
76
website/.graphclient/
7+
8+
# ignore below md since they are fetched from GitHub
9+
website/pages/en/developing/graph-ts/*.md
10+
website/pages/en/querying/graph-client/*.md

packages/nextra-theme/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"@emotion/react": "^11",
3131
"next": "^13",
3232
"next-seo": "^6",
33-
"nextra": "^2",
33+
"nextra": "^3",
3434
"react-dom": "^18",
3535
"theme-ui": "^0.16"
3636
},
@@ -51,7 +51,7 @@
5151
"@types/react-dom": "^18.3.0",
5252
"next": "^14.2.5",
5353
"next-seo": "^6.5.0",
54-
"nextra": "^2.13.4",
54+
"nextra": "^3.0.0-alpha.30",
5555
"react": "^18.3.1",
5656
"react-dom": "^18.3.1",
5757
"theme-ui": "^0.16.2",

packages/nextra-theme/src/components/Code.tsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,3 @@ export const CodeBlock = ({ children, ...props }: CodeBlockProps) => {
4343
</Code.Block>
4444
)
4545
}
46-
47-
export const CodeInline = ({ children, ...props }: HTMLAttributes<HTMLElement>) => {
48-
return <Code.Inline {...props}>{children as string}</Code.Inline>
49-
}

0 commit comments

Comments
 (0)