Skip to content

Commit 6e18e7e

Browse files
authored
Sunrise countdown banner tweaks (#703)
* Update dependencies + enable `transition` on `SunriseCountdownBanner` * Sunrise countdown banner tweaks
1 parent 4884dc8 commit 6e18e7e

File tree

7 files changed

+293
-335
lines changed

7 files changed

+293
-335
lines changed

Dockerfile

+1-1
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.1.0
9+
RUN npm install -g pnpm@9.2.0
1010

1111
WORKDIR /app
1212

package.json

+2-2
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.1.0",
4+
"packageManager": "pnpm@9.2.0",
55
"scripts": {
66
"build": "NODE_OPTIONS='--max_old_space_size=4096' turbo run build",
77
"check": "pnpm typecheck && pnpm lint && pnpm prettier:check",
@@ -22,7 +22,7 @@
2222
"eslint": "^8.57.0",
2323
"eslint-plugin-mdx": "^2.3.4",
2424
"prettier": "^3.3.1",
25-
"prettier-plugin-tailwindcss": "^0.6.1",
25+
"prettier-plugin-tailwindcss": "^0.6.2",
2626
"remark-frontmatter": "^5.0.0",
2727
"remark-lint-first-heading-level": "^3.1.2",
2828
"remark-lint-heading-increment": "^3.1.2",

packages/nextra-theme/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -43,10 +43,10 @@
4343
"react-use": "^17.5.0"
4444
},
4545
"devDependencies": {
46-
"@edgeandnode/gds": "5.15.0-sunrise-countdown-banner-1717224377798-b1bbf1b3777fe1360638f823941a169764039b97",
47-
"@edgeandnode/go": "6.21.0-sunrise-countdown-banner-1717224377798-b1bbf1b3777fe1360638f823941a169764039b97",
46+
"@edgeandnode/gds": "5.15.0-sunrise-countdown-banner-1718059604179-82fb449b35d2342bf73e99c32eb698f50355f914",
47+
"@edgeandnode/go": "6.23.0-sunrise-countdown-banner-1718059604179-82fb449b35d2342bf73e99c32eb698f50355f914",
4848
"@emotion/react": "^11.11.4",
49-
"@types/lodash": "^4.17.4",
49+
"@types/lodash": "^4.17.5",
5050
"@types/react": "^18.3.3",
5151
"@types/react-dom": "^18.3.0",
5252
"next": "^14.2.3",

packages/og-image/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
"@cloudflare/workers-types": "^4.20240605.0",
2020
"@types/react": "^18.3.3",
2121
"jest-image-snapshot": "^6.4.0",
22-
"tsx": "^4.13.2",
22+
"tsx": "^4.15.1",
2323
"typescript": "^5.4.5",
2424
"vitest": "^1.6.0",
25-
"wrangler": "^3.60.0"
25+
"wrangler": "^3.60.1"
2626
}
2727
}

pnpm-lock.yaml

+279-321
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

website/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
"typecheck": "tsc --noEmit"
1414
},
1515
"dependencies": {
16-
"@edgeandnode/common": "^6.9.2",
17-
"@edgeandnode/gds": "5.15.0-sunrise-countdown-banner-1717224377798-b1bbf1b3777fe1360638f823941a169764039b97",
18-
"@edgeandnode/go": "6.21.0-sunrise-countdown-banner-1717224377798-b1bbf1b3777fe1360638f823941a169764039b97",
16+
"@edgeandnode/common": "^6.10.0",
17+
"@edgeandnode/gds": "5.15.0-sunrise-countdown-banner-1718059604179-82fb449b35d2342bf73e99c32eb698f50355f914",
18+
"@edgeandnode/go": "6.23.0-sunrise-countdown-banner-1718059604179-82fb449b35d2342bf73e99c32eb698f50355f914",
1919
"@emotion/react": "^11.11.4",
2020
"@graphprotocol/contracts": "6.2.1",
2121
"@graphprotocol/nextra-theme": "workspace:*",
2222
"@phosphor-icons/react": "^2.1.5",
23-
"mixpanel-browser": "^2.51.0",
23+
"mixpanel-browser": "^2.52.0",
2424
"next": "^14.2.3",
2525
"next-seo": "^6.5.0",
2626
"next-sitemap": "^4.2.3",
@@ -42,7 +42,7 @@
4242
"graphql": "^16.8.1",
4343
"postcss": "^8.4.38",
4444
"tailwindcss": "^3.4.4",
45-
"tsx": "^4.13.2",
45+
"tsx": "^4.15.1",
4646
"unified": "^11.0.4"
4747
},
4848
"nextBundleAnalysis": {

website/src/_app.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ function MyAppWithLocale({ Component, router, pageProps }: AppProps) {
152152
/>
153153
</div>
154154
<Layout
155-
preheader={<SunriseCountdownBanner />}
155+
preheader={<SunriseCountdownBanner transition={true} />}
156156
header={
157157
<GlobalHeader
158158
activeProduct="THE_GRAPH"

0 commit comments

Comments
 (0)