Skip to content

Commit

Permalink
fix: bump example template packages & update mobile-web-app-capable m…
Browse files Browse the repository at this point in the history
…eta tag
  • Loading branch information
swiiny committed Oct 16, 2024
1 parent d3fd8ab commit 722ede1
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion packages/example/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/pages/building-your-application/configuring/typescript for more information.
20 changes: 10 additions & 10 deletions packages/example/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,23 @@
"lint": "next lint"
},
"dependencies": {
"ethers": "^6.13.1",
"next": "14.2.5",
"ethers": "^6.13.4",
"next": "14.2.15",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"@web3-onboard/core": "^2.22.3",
"@web3-onboard/frame": "^2.1.1",
"@web3-onboard/injected-wallets": "^2.11.1",
"@web3-onboard/injected-wallets": "^2.11.2",
"@web3-onboard/walletconnect": "^2.6.1"
},
"devDependencies": {
"@types/node": "20.14.11",
"@types/react": "18.3.3",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.5.4"
}
}
2 changes: 1 addition & 1 deletion packages/example/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const CreateNextjsDapp = ({ Component, pageProps }: AppProps) => {
<link rel='apple-touch-icon' href='/icon.png'></link>

<meta name='application-name' content='Create Nextjs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create Nextjs Dapp' />
<meta
Expand Down
2 changes: 1 addition & 1 deletion packages/example/pages/_document.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export default function CreateNextjsDappDocument() {
<Head>
<link href='https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap' rel='stylesheet' />
<meta name='application-name' content='Create NextJs Dapp' />
<meta name='apple-mobile-web-app-capable' content='yes' />
<meta name='mobile-web-app-capable' content='yes' />
<meta name='apple-mobile-web-app-status-bar-style' content='default' />
<meta name='apple-mobile-web-app-title' content='Create NextJs Dapp' />
<meta
Expand Down

0 comments on commit 722ede1

Please sign in to comment.