Skip to content

Commit 5a1a542

Browse files
authored
Use @pinax/graph-networks-registry for Supported Networks (#867)
* Use `@pinax/graph-networks-registry` for Supported Networks * Update dependencies * Filter out networks that don’t support subgraphs, substreams, or firehose * Update `check:fix` script to run Prettier after ESLint, and no typecheck * Update Dockerfile to not hardcode pnpm version
1 parent 9323111 commit 5a1a542

File tree

40 files changed

+4053
-38214
lines changed

40 files changed

+4053
-38214
lines changed

.prettierignore

-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,3 @@ out/
44
pnpm-lock.yaml
55
dist/
66
website/remote-files/*.json
7-
website/.graphclient/

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@ ENV ORIGIN=$ORIGIN
99
ENV PNPM_HOME="/usr/bin"
1010

1111
RUN apk add --no-cache git
12-
RUN npm install -g [email protected]
12+
RUN npm install -g corepack@latest
13+
RUN corepack enable pnpm
1314

1415
WORKDIR /app
1516

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
{
22
"name": "the-graph-docs-monorepo",
33
"private": true,
4-
"packageManager": "pnpm@10.0.0",
4+
"packageManager": "pnpm@10.1.0",
55
"scripts": {
66
"dev": "turbo run dev --parallel",
77
"build": "NODE_OPTIONS='--max_old_space_size=4096' turbo run build",
88
"docker:build": "source ./website/.env.local && DOCKER_BUILDKIT=1 docker build . -t docs --no-cache --build-arg ENVIRONMENT=$ENVIRONMENT --build-arg ORIGIN=$ORIGIN",
99
"docker:clean": "docker builder prune",
1010
"docker:up": "docker run --rm -it -p 3000:80 -v \"$(pwd)/nginx.conf:/etc/nginx/nginx.conf\" docs",
1111
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
12-
"check:fix": "pnpm typecheck; pnpm lint:fix",
12+
"check:fix": "pnpm lint:fix; pnpm prettier",
1313
"typecheck": "turbo run typecheck",
1414
"lint": "eslint . --cache --ignore-path .gitignore --max-warnings 0",
1515
"lint:fix": "eslint . --cache --ignore-path .gitignore --fix; pnpm prettier",

packages/nextra-theme/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"react-use": "^17.6.0"
4444
},
4545
"devDependencies": {
46-
"@edgeandnode/gds": "^6.1.2",
47-
"@edgeandnode/go": "^8.4.3",
46+
"@edgeandnode/gds": "^6.2.0",
47+
"@edgeandnode/go": "^8.7.0",
4848
"@emotion/react": "^11.14.0",
49-
"@types/lodash": "^4.17.14",
49+
"@types/lodash": "^4.17.15",
5050
"@types/react": "^18.3.18",
5151
"@types/react-dom": "^18.3.5",
5252
"next": "^14.2.23",
@@ -55,7 +55,7 @@
5555
"react": "^18.3.1",
5656
"react-dom": "^18.3.1",
5757
"theme-ui": "^0.17.1",
58-
"tsup": "^8.3.5"
58+
"tsup": "^8.3.6"
5959
},
6060
"sideEffects": false
6161
}

packages/og-image/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,12 @@
1616
"yoga-wasm-web": "0.3.3"
1717
},
1818
"devDependencies": {
19-
"@cloudflare/workers-types": "^4.20250124.3",
19+
"@cloudflare/workers-types": "^4.20250129.0",
2020
"@types/react": "^18.3.18",
2121
"jest-image-snapshot": "^6.4.0",
2222
"tsx": "^4.19.2",
2323
"typescript": "^5.7.3",
2424
"vitest": "^1.6.0",
25-
"wrangler": "^3.105.1"
25+
"wrangler": "^3.107.2"
2626
}
2727
}

pnpm-lock.yaml

+747-4,478
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)