-
Notifications
You must be signed in to change notification settings - Fork 82
Expand file tree
/
Copy pathmise.toml
More file actions
25 lines (20 loc) · 828 Bytes
/
mise.toml
File metadata and controls
25 lines (20 loc) · 828 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[tools]
node = "18.18.1"
"ubi:ethereum-optimism/supersim"="0.1.0-alpha.59"
# Foundry dependencies
# Foundry is a special case because it supplies multiple binaries at the same
# GitHub release, so we need to use the aliasing trick to get mise to not error
# The git ref here should be on the `stable` branch.
forge = "nightly-0dd4d3153764f4706c2c9857675e42dec64155a7"
cast = "nightly-0dd4d3153764f4706c2c9857675e42dec64155a7"
anvil = "nightly-0dd4d3153764f4706c2c9857675e42dec64155a7"
[alias]
forge = "ubi:foundry-rs/foundry[exe=forge]"
cast = "ubi:foundry-rs/foundry[exe=cast]"
anvil = "ubi:foundry-rs/foundry[exe=anvil]"
[hooks]
# Enabling corepack will install the `pnpm` package manager specified in package.json
postinstall = "npx corepack enable"
[settings]
# Needs to be enabled for hooks to work
experimental = true