Skip to content

Commit aacbcc8

Browse files
committed
fix: bump styled-components template packages & update mobile-web-app-capable meta tag
1 parent 9a3c8d9 commit aacbcc8

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

packages/styled-components/next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
/// <reference types="next/image-types/global" />
33

44
// NOTE: This file should not be edited
5-
// see https://nextjs.org/docs/basic-features/typescript for more information.
5+
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.

packages/styled-components/package.json

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,26 +10,26 @@
1010
},
1111
"dependencies": {
1212
"@vercel/analytics": "^1.3.1",
13-
"@web3-onboard/core": "^2.22.2",
13+
"@web3-onboard/core": "^2.22.3",
1414
"@web3-onboard/frame": "^2.1.1",
15-
"@web3-onboard/injected-wallets": "^2.11.1",
15+
"@web3-onboard/injected-wallets": "^2.11.2",
1616
"@web3-onboard/walletconnect": "^2.6.1",
17-
"ethers": "^6.13.1",
18-
"next": "14.2.5",
17+
"ethers": "^6.13.4",
18+
"next": "14.2.15",
1919
"next-transpile-modules": "^10.0.1",
2020
"react": "18.3.1",
2121
"react-dom": "18.3.1",
22-
"react-icons": "^5.2.1",
23-
"styled-components": "^6.1.12"
22+
"react-icons": "^5.3.0",
23+
"styled-components": "^6.1.13"
2424
},
2525
"devDependencies": {
2626
"@types/styled-components": "^5.1.34",
27-
"@types/node": "20.14.11",
28-
"@types/react": "18.3.3",
29-
"@types/react-dom": "18.3.0",
30-
"eslint": "^8.57.0",
31-
"eslint-config-next": "^14.2.5",
27+
"@types/node": "22.7.5",
28+
"@types/react": "18.3.11",
29+
"@types/react-dom": "18.3.1",
30+
"eslint": "^8.57.1",
31+
"eslint-config-next": "^14.2.15",
3232
"prettier": "3.3.3",
33-
"typescript": "5.5.3"
33+
"typescript": "5.6.3"
3434
}
3535
}

packages/styled-components/pages/_app.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
1717
<link rel='apple-touch-icon' href='/icon.png'></link>
1818

1919
<meta name='application-name' content='Create Nextjs Dapp' />
20-
<meta name='apple-mobile-web-app-capable' content='yes' />
20+
<meta name='mobile-web-app-capable' content='yes' />
2121
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
2222
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
2323
<meta

packages/styled-components/pages/_document.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export default function CreateNextjsDappDocument() {
77
<Head>
88
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
99
<meta name='application-name' content='Create NextJs Dapp' />
10-
<meta name='apple-mobile-web-app-capable' content='yes' />
10+
<meta name='mobile-web-app-capable' content='yes' />
1111
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
1212
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
1313
<meta

0 commit comments

Comments
 (0)