Skip to content

Commit f487560

Browse files
authored
Update supported networks (#388)
* Update pnpm and dependencies * Update supported networks on index page * Dynamic supported networks from `@edgeandnode/common` * Fix CI
1 parent ab96a1d commit f487560

33 files changed

+3109
-1639
lines changed

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

-2
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ jobs:
2020

2121
- name: Set up pnpm
2222
uses: pnpm/action-setup@v2
23-
with:
24-
version: 8.2.0
2523

2624
- name: Install dependencies
2725
run: pnpm install

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM node:18-alpine as builder
33
ENV PNPM_HOME="/usr/bin"
44

55
RUN apk add --no-cache git
6-
RUN npm install -g pnpm@8.2.0
6+
RUN npm install -g pnpm@8.5.1
77

88
WORKDIR /app
99

package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "the-graph-docs-monorepo",
33
"private": true,
4-
"packageManager": "pnpm@8.2.0",
4+
"packageManager": "pnpm@8.5.1",
55
"scripts": {
66
"build": "pnpm -r build",
77
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
@@ -22,17 +22,17 @@
2222
"typecheck": "pnpm --filter @graphprotocol/docs typecheck"
2323
},
2424
"devDependencies": {
25-
"@edgeandnode/eslint-config": "^1.3.1",
26-
"eslint": "^8.39.0",
27-
"eslint-plugin-mdx": "^2.0.5",
25+
"@edgeandnode/eslint-config": "^1.3.5",
26+
"eslint": "^8.41.0",
27+
"eslint-plugin-mdx": "^2.1.0",
2828
"husky": "^8.0.3",
29-
"lint-staged": "^13.2.1",
29+
"lint-staged": "^13.2.2",
3030
"prettier": "^2.8.8",
3131
"prettier-plugin-pkg": "^0.17.1",
3232
"remark-frontmatter": "^4.0.1",
33-
"remark-lint-first-heading-level": "^3.1.1",
34-
"remark-lint-heading-increment": "^3.1.1",
35-
"remark-lint-no-heading-punctuation": "^3.1.1",
33+
"remark-lint-first-heading-level": "^3.1.2",
34+
"remark-lint-heading-increment": "^3.1.2",
35+
"remark-lint-no-heading-punctuation": "^3.1.2",
3636
"remark-lint-restrict-elements": "workspace:*",
3737
"typescript": "5.0.4"
3838
},

packages/nextra-theme/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
"theme-ui": "^0.15.5"
3434
},
3535
"dependencies": {
36-
"@docsearch/react": "^3.3.3",
36+
"@docsearch/react": "^3.4.0",
3737
"@radix-ui/react-collapsible": "1.0.2",
3838
"@radix-ui/react-visually-hidden": "^1.0.2",
3939
"lodash": "^4.17.21",
@@ -42,14 +42,14 @@
4242
"react-use": "^17.4.0"
4343
},
4444
"devDependencies": {
45-
"@edgeandnode/gds": "^1.3.2",
46-
"@emotion/react": "^11.10.6",
47-
"@types/lodash": "^4.14.194",
45+
"@edgeandnode/gds": "^2.3.0",
46+
"@emotion/react": "^11.11.0",
47+
"@types/lodash": "^4.14.195",
4848
"@types/react": "^18.2.7",
4949
"@types/react-dom": "^18.2.4",
50-
"next": "^13.4.3",
50+
"next": "^13.4.4",
5151
"next-seo": "^6.0.0",
52-
"nextra": "2.5.2",
52+
"nextra": "2.6.1",
5353
"react": "18.2.0",
5454
"react-dom": "^18.2.0",
5555
"theme-ui": "^0.15.7",

packages/nextra-theme/src/index.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ const mdxComponents = {
4747
table: Table,
4848
VideoEmbed,
4949
Difficulty,
50+
ListUnordered,
51+
CodeInline,
5052
}
5153

5254
const mdxStyles: ThemeUIStyleObject = {

packages/remark-lint-restrict-elements/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"remark restricts elements"
1313
],
1414
"dependencies": {
15-
"unified-lint-rule": "^2.1.1",
15+
"unified-lint-rule": "^2.1.2",
1616
"unist-util-visit": "^4.1.2"
1717
},
1818
"sideEffects": false

0 commit comments

Comments
 (0)