Skip to content

Commit

Permalink
chore: minor renames, changes, and improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
fuxingloh committed Jun 4, 2024
1 parent 05f9602 commit d3f1599
Show file tree
Hide file tree
Showing 5 changed files with 91 additions and 29 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { afterAll, beforeAll, describe, expect, it } from '@jest/globals';
import { ChainfileContainer, ChainfileTestcontainers } from 'chainfile-testcontainers';

import solana from './solana-test-validator.json';
import solana from './test-validator.json';

let testcontainers: ChainfileTestcontainers;

Expand Down
106 changes: 78 additions & 28 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
]
},
"dependencies": {
"@vercel/analytics": "^1.3.1",
"chainfile": "workspace:*",
"next": "^14.2.3",
"nextra": "^2.13.4",
Expand Down
11 changes: 11 additions & 0 deletions website/pages/_app.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Analytics } from '@vercel/analytics/react';
import type { AppProps } from 'next/app';

export default function App({ Component, pageProps }: AppProps) {
return (
<>
<Component {...pageProps} />
<Analytics />
</>
);
}

0 comments on commit d3f1599

Please sign in to comment.