From 2af7d47e370ca3985e92d9e8c4aac29c3f96db16 Mon Sep 17 00:00:00 2001 From: Rens Rooimans Date: Fri, 29 Nov 2024 17:46:12 +0100 Subject: [PATCH] ignore keystone in hh compile --- contracts/hardhat.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/contracts/hardhat.config.ts b/contracts/hardhat.config.ts index 577ef9675d..4675301e4e 100644 --- a/contracts/hardhat.config.ts +++ b/contracts/hardhat.config.ts @@ -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'), ) },