Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/addressChecks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4

- name: Install Bun
run: |
Expand All @@ -21,7 +21,7 @@ jobs:

- name: Install dependencies and build
run: |
bun install
bun install --frozen-lockfile
bun run build

- name: Run checks and update data
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ jobs:
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Install Bun
run: |
curl -fsSL https://bun.sh/install | bash
echo "$HOME/.bun/bin" >> $GITHUB_PATH
- name: Install dependencies and build
run: |
bun install
bun install --frozen-lockfile
bun run build

- name: Check if PR is from a fork
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

steps:
- name: Checkout
uses: actions/checkout@v4
uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
# with:
# # Make sure the actual branch is checked out when running on pull requests
# ref: ${{ github.head_ref }}
Expand All @@ -25,7 +25,7 @@ jobs:
# commit_message: "ci: run linter"

- name: Check markdown links
uses: tcort/github-action-markdown-link-check@v1
uses: tcort/github-action-markdown-link-check@e7c7a18363c842693fadde5d41a3bd3573a7a225 # v1
with:
use-quiet-mode: "yes"
check-modified-files-only: "yes"
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
save-exact=true
42 changes: 21 additions & 21 deletions bun.lock

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

5 changes: 5 additions & 0 deletions bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

[install]
minimumReleaseAge = 604800
ignoreScripts = true
exact = true
42 changes: 21 additions & 21 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,31 +23,31 @@
},
"packageManager": "bun@1.1.0",
"dependencies": {
"@cmfcmf/docusaurus-search-local": "^2.0.1",
"@cmfcmf/docusaurus-search-local": "2.0.1",
"@docusaurus/core": "3.9.2",
"@docusaurus/faster": "^3.9.2",
"@docusaurus/faster": "3.9.2",
"@docusaurus/preset-classic": "3.9.2",
"@docusaurus/theme-mermaid": "3.9.2",
"@mdx-js/react": "^3.1.1",
"@radix-ui/react-icons": "^1.3.2",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@mdx-js/react": "3.1.1",
"@radix-ui/react-icons": "1.3.2",
"@radix-ui/react-label": "2.1.8",
"@radix-ui/react-select": "2.2.6",
"@radix-ui/react-tabs": "1.1.13",
"@radix-ui/react-tooltip": "1.2.8",
"clsx": "1.1.1",
"dotenv": "^16.6.1",
"dotenv": "16.6.1",
"hast-util-is-element": "1.1.0",
"lucide-react": "^0.465.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"recharts": "^2.15.4",
"rehype-katex": "^7.0.1",
"remark-math": "^6.0.0",
"solc": "^0.8.34",
"solidity-docgen": "^0.5.17",
"turndown": "^7.2.2",
"turndown-plugin-gfm": "^1.0.2",
"viem": "^2.46.3"
"lucide-react": "0.465.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"recharts": "2.15.4",
"rehype-katex": "7.0.1",
"remark-math": "6.0.0",
"solc": "0.8.34",
"solidity-docgen": "0.5.17",
"turndown": "7.2.2",
"turndown-plugin-gfm": "1.0.2",
"viem": "2.46.3"
},
"browserslist": {
"production": [
Expand All @@ -63,7 +63,7 @@
},
"devDependencies": {
"@docusaurus/module-type-aliases": "3.9.2",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts": "4.9.6",
"@tsconfig/docusaurus": "1.0.2",
"@types/react": "18.3.1",
"@types/react-helmet": "6.1.1",
Expand Down
3 changes: 3 additions & 0 deletions vercel.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"installCommand": "bun install --frozen-lockfile"
}
Loading