Skip to content

Commit 3f5627a

Browse files
committed
fix: bump tailwind template packages & update mobile-web-app-capable meta tag
1 parent aacbcc8 commit 3f5627a

File tree

4 files changed

+20
-20
lines changed

4 files changed

+20
-20
lines changed

packages/tailwind/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/tailwind/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -10,28 +10,28 @@
1010
},
1111
"dependencies": {
1212
"clsx": "^2.1.1",
13-
"ethers": "^6.13.1",
14-
"next": "14.2.5",
13+
"ethers": "^6.13.4",
14+
"next": "14.2.15",
1515
"postcss-import": "^16.1.0",
1616
"react": "18.3.1",
1717
"react-dom": "18.3.1",
18-
"react-icons": "^5.2.1",
19-
"@web3-onboard/core": "^2.22.2",
18+
"react-icons": "^5.3.0",
19+
"@web3-onboard/core": "^2.22.3",
2020
"@web3-onboard/frame": "^2.1.1",
21-
"@web3-onboard/injected-wallets": "^2.11.1",
21+
"@web3-onboard/injected-wallets": "^2.11.2",
2222
"@web3-onboard/walletconnect": "^2.6.1"
2323
},
2424
"devDependencies": {
25-
"@types/node": "20.14.11",
26-
"@types/react": "18.3.3",
27-
"@types/react-dom": "18.3.0",
28-
"autoprefixer": "^10.4.19",
29-
"eslint": "^8.57.0",
30-
"eslint-config-next": "^14.2.5",
31-
"postcss": "^8.4.39",
32-
"postcss-nesting": "^12.1.5",
25+
"@types/node": "22.7.5",
26+
"@types/react": "18.3.11",
27+
"@types/react-dom": "18.3.1",
28+
"autoprefixer": "^10.4.20",
29+
"eslint": "^8.57.1",
30+
"eslint-config-next": "^14.2.15",
31+
"postcss": "^8.4.47",
32+
"postcss-nesting": "^13.0.0",
3333
"prettier": "3.3.3",
34-
"tailwindcss": "^3.4.6",
35-
"typescript": "5.5.3"
34+
"tailwindcss": "^3.4.14",
35+
"typescript": "5.5.4"
3636
}
3737
}

packages/tailwind/pages/_app.tsx

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

1616
<meta name='application-name' content='Create Nextjs Dapp' />
17-
<meta name='apple-mobile-web-app-capable' content='yes' />
17+
<meta name='mobile-web-app-capable' content='yes' />
1818
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
1919
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
2020
<meta

packages/tailwind/pages/_document.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
import { Html, Head, Main, NextScript } from 'next/document';
1+
import { Head, Html, Main, NextScript } from 'next/document';
22

33
export default function CreateNextjsDappDocument() {
44
return (
55
<Html lang='en'>
66
<Head>
77
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
88
<meta name='application-name' content='Create NextJs Dapp' />
9-
<meta name='apple-mobile-web-app-capable' content='yes' />
9+
<meta name='mobile-web-app-capable' content='yes' />
1010
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
1111
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
1212
<meta
@@ -20,4 +20,4 @@ export default function CreateNextjsDappDocument() {
2020
</body>
2121
</Html>
2222
);
23-
}
23+
}

0 commit comments

Comments
 (0)