From c05daf6a9999754fa854e150300ad4d230e38e00 Mon Sep 17 00:00:00 2001 From: mm Date: Fri, 30 Aug 2024 11:43:24 +0200 Subject: [PATCH] Fixed yarn clean - to remove zksync artifacts too --- l1-contracts/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/l1-contracts/package.json b/l1-contracts/package.json index f17227977..e7329a6bf 100644 --- a/l1-contracts/package.json +++ b/l1-contracts/package.json @@ -53,9 +53,9 @@ "zksync-ethers": "^5.9.0" }, "scripts": { - "build": "hardhat compile & CONTRACTS_BASE_NETWORK_ZKSYNC=true hardhat compile ", + "build": "hardhat compile && CONTRACTS_BASE_NETWORK_ZKSYNC=true hardhat compile ", "build-l1": "hardhat compile", - "clean": "hardhat clean", + "clean": "hardhat clean && CONTRACTS_BASE_NETWORK_ZKSYNC=true hardhat clean", "clean:foundry": "forge clean", "test": "yarn workspace da-contracts build && hardhat test test/unit_tests/*.spec.ts --network hardhat", "test:foundry": "forge test --ffi",