Skip to content

Commit da2d6f8

Browse files
authored
Update dependencies, including @edgeandnode/common + remove SunriseCountdownBanner (#721)
* Update dependencies, including `@edgeandnode/common` * Use ESM where possible * Remove `SunriseCountdownBanner`
1 parent ebe269e commit da2d6f8

14 files changed

+1692
-1389
lines changed

.remarkrc.cjs renamed to .remarkrc.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module.exports = {
1+
export default {
22
plugins: [
33
'frontmatter', // should be defined
44
['remark-lint-first-heading-level', 2],

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ ENV ENVIRONMENT=$ENVIRONMENT
66
ENV PNPM_HOME="/usr/bin"
77

88
RUN apk add --no-cache git
9-
RUN npm install -g pnpm@9.2.0
9+
RUN npm install -g pnpm@9.4.0
1010

1111
WORKDIR /app
1212

package.json

Lines changed: 2 additions & 2 deletions
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@9.2.0",
4+
"packageManager": "pnpm@9.4.0",
55
"scripts": {
66
"build": "NODE_OPTIONS='--max_old_space_size=4096' turbo run build",
77
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
@@ -29,6 +29,6 @@
2929
"remark-lint-no-heading-punctuation": "^3.1.2",
3030
"remark-lint-restrict-elements": "workspace:*",
3131
"turbo": "^1.13.4",
32-
"typescript": "^5.4.5"
32+
"typescript": "^5.5.2"
3333
}
3434
}

packages/nextra-theme/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,17 +36,17 @@
3636
},
3737
"dependencies": {
3838
"@docsearch/react": "^3.6.0",
39-
"@radix-ui/react-collapsible": "^1.0.3",
40-
"@radix-ui/react-visually-hidden": "^1.0.3",
39+
"@radix-ui/react-collapsible": "^1.1.0",
40+
"@radix-ui/react-visually-hidden": "^1.1.0",
4141
"lodash": "^4.17.21",
4242
"react-intersection-observer": "^9.10.3",
4343
"react-use": "^17.5.0"
4444
},
4545
"devDependencies": {
46-
"@edgeandnode/gds": "^5.17.0",
47-
"@edgeandnode/go": "^6.25.0",
46+
"@edgeandnode/gds": "^5.21.0",
47+
"@edgeandnode/go": "^6.31.0",
4848
"@emotion/react": "^11.11.4",
49-
"@types/lodash": "^4.17.5",
49+
"@types/lodash": "^4.17.6",
5050
"@types/react": "^18.3.3",
5151
"@types/react-dom": "^18.3.0",
5252
"next": "^14.2.4",

packages/og-image/package.json

Lines changed: 4 additions & 4 deletions
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.20240614.0",
19+
"@cloudflare/workers-types": "^4.20240620.0",
2020
"@types/react": "^18.3.3",
2121
"jest-image-snapshot": "^6.4.0",
22-
"tsx": "^4.15.6",
23-
"typescript": "^5.4.5",
22+
"tsx": "^4.15.7",
23+
"typescript": "^5.5.2",
2424
"vitest": "^1.6.0",
25-
"wrangler": "^3.60.3"
25+
"wrangler": "^3.62.0"
2626
}
2727
}

pnpm-lock.yaml

Lines changed: 1641 additions & 1359 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

prettier.config.js renamed to prettier.config.mjs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
/** @type {import('prettier').Options} */
2-
module.exports = {
2+
export default {
33
singleQuote: true,
44
semi: false,
55
printWidth: 120,
66
proseWrap: 'never',
77
plugins: ['prettier-plugin-tailwindcss'],
8-
tailwindConfig: './website/tailwind.config.ts',
8+
tailwindConfig: './website/tailwind.config.mjs',
99
tailwindPreserveWhitespace: true,
1010
tailwindFunctions: ['classNames'],
1111
overrides: [
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/** @type {import('next-sitemap').IConfig} */
2-
module.exports = {
2+
export default {
33
siteUrl: process.env.SITE_URL,
44
generateIndexSitemap: false,
55
}

website/next.config.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ export const getStaticProps = async context => ({
3737
},
3838
})
3939

40-
/**
41-
* @type {import('next').NextConfig}
42-
*/
40+
/** @type {import('next').NextConfig} */
4341
export default withNextra({
4442
env,
4543
output: 'export',

website/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,20 +7,20 @@
77
"build": "rm -rf .next && rm -rf out && next build",
88
"dev": "next",
99
"fetch-remote-filepaths": "tsx scripts/fetch-remote-filepaths.ts",
10-
"postbuild": "next-sitemap --config next-sitemap.config.cjs && node scripts/sitemap-ci.js",
10+
"postbuild": "next-sitemap --config next-sitemap.config.mjs && node scripts/sitemap-ci.js",
1111
"prebuild": "pnpm fetch-remote-filepaths",
1212
"predev": "pnpm fetch-remote-filepaths",
1313
"typecheck": "tsc --noEmit"
1414
},
1515
"dependencies": {
16-
"@edgeandnode/common": "^6.11.0",
17-
"@edgeandnode/gds": "^5.17.0",
18-
"@edgeandnode/go": "^6.25.0",
16+
"@edgeandnode/common": "^6.13.0",
17+
"@edgeandnode/gds": "^5.21.0",
18+
"@edgeandnode/go": "^6.31.0",
1919
"@emotion/react": "^11.11.4",
2020
"@graphprotocol/contracts": "6.2.1",
2121
"@graphprotocol/nextra-theme": "workspace:*",
2222
"@phosphor-icons/react": "^2.1.6",
23-
"mixpanel-browser": "^2.52.0",
23+
"mixpanel-browser": "^2.53.0",
2424
"next": "^14.2.4",
2525
"next-seo": "^6.5.0",
2626
"next-sitemap": "^4.2.3",
@@ -39,11 +39,11 @@
3939
"@types/react-dom": "^18.3.0",
4040
"autoprefixer": "^10.4.19",
4141
"fast-xml-parser": "^4.4.0",
42-
"graphql": "^16.8.2",
42+
"graphql": "^16.9.0",
4343
"postcss": "^8.4.38",
4444
"tailwindcss": "^3.4.4",
45-
"tsx": "^4.15.6",
46-
"unified": "^11.0.4"
45+
"tsx": "^4.15.7",
46+
"unified": "^11.0.5"
4747
},
4848
"nextBundleAnalysis": {
4949
"budget": 358400,

0 commit comments

Comments
 (0)