Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
juliancwirko committed Nov 9, 2024
1 parent 17484cc commit c91a325
Show file tree
Hide file tree
Showing 8 changed files with 2,010 additions and 1,431 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
### [9.10.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.10.0) (2024-11-09)
- update Next
- update useElven
- update other dependencies

### [9.9.0](https://github.com/xdevguild/nextjs-dapp-template/releases/tag/v9.9.0) (2024-07-13)
- support for multiple tabs and transactions signing

Expand Down
9 changes: 8 additions & 1 deletion app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,14 @@ const Home: NextPage = () => {
>
Buildo.dev
</a>{' '}
app.
app. Check the source at{' '}
<a
href="https://github.com/xdevguild/buildo.dev"
className="underline font-bold"
>
xDevGuild
</a>
.
</div>
</CardContent>
</Card>
Expand Down
2 changes: 1 addition & 1 deletion components/elven-ui/login-modal-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export const LoginModalButton: FC<LoginModalButtonProps> = ({
<Dialog open={isOpen} onOpenChange={onCloseComplete}>
{isLoggedIn ? (
<Button variant="outline" onClick={() => logout()}>
Logout
Disconnect
</Button>
) : (
<Button variant="outline" onClick={handleOpen}>
Expand Down
2 changes: 1 addition & 1 deletion components/theme-provider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

import * as React from 'react';
import { ThemeProvider as NextThemesProvider } from 'next-themes';
import { type ThemeProviderProps } from 'next-themes/dist/types';
import { type ThemeProviderProps } from 'next-themes';

export const ThemeProvider = ({ children, ...props }: ThemeProviderProps) => {
return <NextThemesProvider {...props}>{children}</NextThemesProvider>;
Expand Down
2 changes: 1 addition & 1 deletion 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/app/building-your-application/configuring/typescript for more information.
8 changes: 5 additions & 3 deletions next.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
/** @type {import('next').NextConfig} */

const externals = ['pino-pretty', 'lokijs', 'utf-8-validate', 'bufferutil'];

const nextConfig = {
webpack: (config) => {
config.externals.push(...externals);
config.resolve.fallback = { fs: false };
config.externals.push('pino-pretty', 'lokijs', 'encoding', {
bufferutil: 'bufferutil',
'utf-8-validate': 'utf-8-validate',
});
return config;
},
eslint: {
Expand Down
Loading

0 comments on commit c91a325

Please sign in to comment.