Skip to content

Commit

Permalink
ignore keystone in hh compile
Browse files Browse the repository at this point in the history
  • Loading branch information
RensR committed Nov 29, 2024
1 parent eb419a0 commit 2af7d47
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contracts/hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,10 @@ subtask(TASK_COMPILE_SOLIDITY_GET_SOURCE_PATHS).setAction(
const paths = await runSuper()
const noTests = paths.filter((p: string) => !p.endsWith('.t.sol'))
const noCCIP = noTests.filter((p: string) => !p.includes('/v0.8/ccip'))
return noCCIP.filter(
const noKeystone = noCCIP.filter(
(p: string) => !p.includes('/v0.8/keystone'),
)
return noKeystone.filter(
(p: string) => !p.includes('src/v0.8/vendor/forge-std'),
)
},
Expand Down

0 comments on commit 2af7d47

Please sign in to comment.