Skip to content

Commit 80f24fc

Browse files
Merge branch 'main' into feature/fet-2603-add-poap-support
2 parents 93099cb + b9e512e commit 80f24fc

File tree

6 files changed

+122
-116
lines changed

6 files changed

+122
-116
lines changed

.claude/settings.local.json

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,25 @@
3232
"mcp__github__list_workflow_jobs",
3333
"mcp__github__get_job_logs",
3434
"mcp__github__get_pull_request_diff",
35-
"mcp__github__get_pull_request"
35+
"mcp__github__get_pull_request",
36+
"WebFetch(domain:registry.npmjs.org)",
37+
"WebFetch(domain:github.com)"
3638
],
37-
"deny": []
39+
"deny": [
40+
"Bash(pnpm i --no-frozen-lockfile:*)",
41+
"Bash(pnpm install --no-frozen-lockfile:*)",
42+
"Bash(npm i --no-frozen-lockfile:*)",
43+
"Bash(npm install --no-frozen-lockfile:*)"
44+
]
45+
},
46+
"sandbox": {
47+
"enabled": true,
48+
"autoAllowBashIfSandboxed": true,
49+
"allowUnsandboxedCommands": false,
50+
"network": {
51+
"allowUnixSockets": [],
52+
"allowLocalBinding": true
53+
},
54+
"excludedCommands": []
3855
}
39-
}
56+
}

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
node_modules
55
/.pnp
66
.pnp.js
7+
.pnpm-store
78

89
# testing
910
/coverage
@@ -74,6 +75,3 @@ tsconfig.vitest-temp.json
7475
.dev.vars
7576

7677
certificates
77-
78-
# Claude
79-
.claude

.husky/pre-commit

Lines changed: 0 additions & 4 deletions
This file was deleted.

.npmrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,5 @@
11
strict-peer-dependencies=false
2-
auto-install-peers=false
2+
auto-install-peers=false
3+
public-hoist-pattern[]=*eslint*
4+
public-hoist-pattern[]=*prettier*
5+
public-hoist-pattern[]=*stylelint*

package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@
4444
"e2e:wallet": "playwright test --project=wallets",
4545
"e2e:wallet:debug": "playwright test --project=wallets --debug",
4646
"e2e:ci": "E2E=true CI=true STABLE_MODE=true SLOW_MODE=true pnpm tenv start --extra-time 11368000 --verbosity 1",
47-
"postinstall": "husky install",
4847
"wrangle": "wrangler pages dev ./out --local --log-level none",
4948
"wrangle:dev": "wrangler pages dev ./next",
5049
"wrangle:dev:https": "wrangler pages dev --local-protocol=https ./next",
@@ -118,7 +117,7 @@
118117
},
119118
"devDependencies": {
120119
"@cloudflare/workers-types": "^3.14.1",
121-
"@ensdomains/buffer": "^0.1.1",
120+
"@ensdomains/buffer": "^0.1.3",
122121
"@ensdomains/ens-test-env": "0.6.0",
123122
"@ensdomains/hardhat-toolbox-viem-extended": "^0.0.5",
124123
"@ensdomains/headless-web3-provider": "^1.0.8",
@@ -167,7 +166,6 @@
167166
"hardhat": "^2.22.18",
168167
"hardhat-dependency-compiler": "^1.1.3",
169168
"hardhat-deploy": "^0.12.4",
170-
"husky": "^7.0.4",
171169
"jsdom": "^24.1.0",
172170
"knip": "^5.44.0",
173171
"msw": "^2.7.0",
@@ -193,6 +191,10 @@
193191
"ws": "^8.16.0"
194192
},
195193
"pnpm": {
194+
"onlyBuiltDependencies": [
195+
"esbuild",
196+
"fsevents"
197+
],
196198
"overrides": {
197199
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@0.3.0-beta.13",
198200
"@wagmi/core": "2.13.3",

0 commit comments

Comments
 (0)