Skip to content

Commit c67bc95

Browse files
committed
Upgrade Astro and Vite dependencies
1 parent 4225eeb commit c67bc95

12 files changed

Lines changed: 204 additions & 104 deletions

File tree

apps/evmcrispr-terminal/package.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,16 @@
88
"@evmcrispr/module-aragonos": "*",
99
"@evmcrispr/module-ens": "*",
1010
"@evmcrispr/module-giveth": "*",
11+
"@evmcrispr/module-http": "*",
12+
"@evmcrispr/module-lang": "*",
1113
"@evmcrispr/module-sim": "*",
1214
"@fontsource/ubuntu-mono": "^5.2.8",
1315
"@heroicons/react": "^2.2.0",
1416
"@monaco-editor/react": "^4.7.0",
1517
"@repo/ui": "*",
1618
"@safe-global/safe-apps-provider": "^0.18.3",
1719
"@safe-global/safe-apps-sdk": "^9.1.0",
18-
"@tailwindcss/vite": "^4.1.18",
20+
"@tailwindcss/vite": "^4.2.4",
1921
"@tanstack/react-query": "^5.90.20",
2022
"@wagmi/core": "^3.3.2",
2123
"@walletconnect/ethereum-provider": "^2.21.0",
@@ -30,7 +32,7 @@
3032
"react-router": "^7.13.0",
3133
"remark-gfm": "^4.0.0",
3234
"shiki": "^4.0.2",
33-
"tailwindcss": "^4.1.18",
35+
"tailwindcss": "^4.2.4",
3436
"viem": "^2.45.1",
3537
"wagmi": "^3.4.2",
3638
"zustand": "^5.0.11",
@@ -45,8 +47,8 @@
4547
"@types/bun": "^1.3.10",
4648
"@types/react": "^19.1.0",
4749
"@types/react-dom": "^19.1.0",
48-
"@vitejs/plugin-react": "^5.1.3",
49-
"vite": "^7.3.1"
50+
"@vitejs/plugin-react": "^6.0.1",
51+
"vite": "^8.0.10"
5052
},
5153
"scripts": {
5254
"dev": "vite --clearScreen false",

apps/evmcrispr-website/package.json

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,20 +10,21 @@
1010
"type-check": "astro check"
1111
},
1212
"dependencies": {
13-
"@astrojs/react": "^5.0.0",
14-
"@astrojs/starlight": "^0.38.1",
13+
"@astrojs/react": "^5.0.4",
14+
"@astrojs/starlight": "^0.38.4",
1515
"@fontsource/ubuntu-mono": "^5.2.8",
1616
"@repo/ui": "*",
17-
"@tailwindcss/vite": "^4.1.18",
18-
"astro": "^6.0.4",
17+
"@tailwindcss/vite": "^4.2.4",
18+
"astro": "~6.1.9",
1919
"react": "^19.1.0",
2020
"react-dom": "^19.1.0",
21-
"tailwindcss": "^4.1.18"
21+
"tailwindcss": "^4.2.4"
2222
},
2323
"devDependencies": {
24-
"@astrojs/check": "^0.9.7",
24+
"@astrojs/check": "^0.9.8",
2525
"@types/react": "^19.1.0",
2626
"@types/react-dom": "^19.1.0",
27-
"typescript": "^5.9.3"
27+
"typescript": "^5.9.3",
28+
"vite": "^7.3.2"
2829
}
2930
}

bun.lock

Lines changed: 169 additions & 78 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bunfig.toml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,10 @@
1+
[install]
2+
# Use isolated installs (pnpm-style) so each workspace resolves the version
3+
# of `vite` (and other shared deps) it actually declares. Without this, on
4+
# environments where bun defaults to the hoisted linker, the website's
5+
# `@tailwindcss/vite` would resolve the terminal's Vite 8 from the root,
6+
# breaking the Astro build (`@tailwindcss/vite@4.x` requires Vite 7).
7+
linker = "isolated"
8+
19
[test]
210
preload = ["./scripts/anvil-preload.ts"]

modules/ens/src/helpers/ens.text.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Read a text record from an ENS name.
1717
| Name | Type | Description |
1818
|------|------|-------------|
1919
| `name` | `string` | ENS name (e.g. vitalik.eth) |
20-
| `key` | `string` | |
20+
| `key` | `string` | Text record key (e.g. "url", "com.twitter", "description") |
2121

2222
## Examples
2323

modules/std/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The standard module is loaded by default. It provides core language constructs,
2727
|--------|---------|-------------|
2828
| [@abi.decode](src/helpers/abi.decode.md) | `array` | Decode ABI-encoded bytes into values given a comma-separated type list. |
2929
| [@abi.encodeCall](src/helpers/abi.encodeCall.md) | `bytes` | ABI-encode a function call from its signature and arguments. |
30-
| [@abi.encodePacked](src/helpers/abi.encodePacked.md) | `bytes` | ABI non-standard packed encoding, matching Solidity |
30+
| [@abi.encodePacked](src/helpers/abi.encodePacked.md) | `bytes` | ABI non-standard packed encoding, matching Solidity's abi.encodePacked. |
3131
| [@arr](src/helpers/arr.md) | `array` | Generate an array of sequential integers from start (inclusive) to end (exclusive). |
3232
| [@block](src/helpers/block.md) | `any` | Return [number, timestamp] of the latest or a specific block. |
3333
| [@bool](src/helpers/bool.md) | `bool` | Evaluate a boolean expression or convert a value to a boolean string. |

modules/std/src/helpers/abi.decode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Decode ABI-encoded bytes into values given a comma-separated type list.
1616

1717
| Name | Type | Description |
1818
|------|------|-------------|
19-
| `types` | `string` | |
19+
| `types` | `string` | Comma-separated Solidity types (e.g. "uint256,address") |
2020
| `data` | `bytes` | ABI-encoded hex data |
2121

2222
## Examples

modules/std/src/helpers/abi.encodePacked.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "@abi.encodePacked"
33
---
44

5-
ABI non-standard packed encoding, matching Solidity
5+
ABI non-standard packed encoding, matching Solidity's abi.encodePacked.
66

77
**Returns**: `bytes`
88

@@ -16,7 +16,7 @@ ABI non-standard packed encoding, matching Solidity
1616

1717
| Name | Type | Description |
1818
|------|------|-------------|
19-
| `types` | `string` | |
19+
| `types` | `string` | Comma-separated Solidity types (e.g. "address,uint256") |
2020
| `[...values]` | `any` | Values to encode, one per type |
2121

2222
## Examples

modules/std/src/helpers/gas.estimate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Estimate the gas required for a contract call.
1717
| Name | Type | Description |
1818
|------|------|-------------|
1919
| `address` | `address` | Target contract address |
20-
| `signature` | `write-abi` | |
20+
| `signature` | `write-abi` | Function signature (e.g. "transfer(address,uint256)") |
2121
| `[...params]` | `any` | Arguments matching the signature types |
2222

2323
<!-- HAND-WRITTEN -->

packages/sdk/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
},
2121
"devDependencies": {
2222
"@evmcrispr/test-utils": "workspace:*",
23+
"@types/bun": "^1.3.10",
2324
"abitype": "^1.2.3",
2425
"arcsecond": "^5.0.0",
2526
"typescript": "^5.9.3"

0 commit comments

Comments
 (0)