Skip to content

Commit

Permalink
fix: bump mui template packages & update mobile-web-app-capable meta tag
Browse files Browse the repository at this point in the history
  • Loading branch information
swiiny committed Oct 16, 2024
1 parent 722ede1 commit 9a3c8d9
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
2 changes: 1 addition & 1 deletion packages/mui/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.
32 changes: 16 additions & 16 deletions packages/mui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-nextjs-dapp-mui",
"version": "1.1.2",
"version": "1.1.4",
"private": true,
"scripts": {
"dev": "next dev",
Expand All @@ -9,29 +9,29 @@
"lint": "next lint"
},
"dependencies": {
"@mui/base": "5.0.0-beta.27",
"@mui/styled-engine-sc": "^5.14.12",
"@mui/system": "^5.16.4",
"ethers": "^6.13.1",
"next": "14.2.5",
"@mui/base": "5.0.0-beta.59",
"@mui/styled-engine-sc": "^6.1.4",
"@mui/system": "^6.1.4",
"ethers": "^6.13.4",
"next": "14.2.15",
"next-transpile-modules": "^10.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.2.1",
"styled-components": "5.3.11",
"@web3-onboard/core": "^2.22.2",
"react-icons": "^5.3.0",
"styled-components": "6.1.13",
"@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",
"@types/node": "22.7.5",
"@types/react": "18.3.11",
"@types/react-dom": "18.3.1",
"@types/styled-components": "^5.1.34",
"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.6.3"
}
}
2 changes: 1 addition & 1 deletion packages/mui/pages/_app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,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
4 changes: 2 additions & 2 deletions packages/mui/pages/_document.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import Document, { Html, Head, Main, NextScript } from 'next/document';
import Document, { Head, Html, Main, NextScript } from 'next/document';
import { ServerStyleSheet } from 'styled-components';

export default function CreateNextjsDappDocument() {
Expand All @@ -7,7 +7,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 9a3c8d9

Please sign in to comment.