Skip to content

Commit

Permalink
fix: bump base template packages & update mobile-web-app-capable meta…
Browse files Browse the repository at this point in the history
… tag
  • Loading branch information
swiiny committed Oct 16, 2024
1 parent d15e85f commit d3fd8ab
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion packages/base/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.
24 changes: 12 additions & 12 deletions packages/base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,24 +10,24 @@
},
"dependencies": {
"classnames": "^2.5.1",
"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",
"sass": "^1.77.8",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"sass": "^1.79.5",
"@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/react-dom": "18.3.0",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.5",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.15",
"prettier": "3.3.3",
"typescript": "5.5.3"
"typescript": "5.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/base/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,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
6 changes: 3 additions & 3 deletions packages/base/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { Html, Head, Main, NextScript } from 'next/document';
import { Head, Html, Main, NextScript } from 'next/document';

export default function CreateNextjsDappDocument() {
return (
<Html lang='en'>
<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 All @@ -20,4 +20,4 @@ export default function CreateNextjsDappDocument() {
</body>
</Html>
);
}
}

0 comments on commit d3fd8ab

Please sign in to comment.