From a072609064a3dbcc28cf5ceb50fb0dd0fd012563 Mon Sep 17 00:00:00 2001 From: Pierrick Turelier Date: Mon, 28 Jul 2025 17:29:37 -0500 Subject: [PATCH 1/2] chore(gitignore): ignore soljson --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index ba16a5e..30825ab 100644 --- a/.gitignore +++ b/.gitignore @@ -22,3 +22,6 @@ docs/ # NPM modules node_modules + +# Soljson +soljson-latest.js From beca0c3c7394934669aaae63d86db75fb5bcd678 Mon Sep 17 00:00:00 2001 From: Pierrick Turelier Date: Mon, 28 Jul 2025 17:30:20 -0500 Subject: [PATCH 2/2] chore(Makefile): remove coverage cmd no-match-path --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 5a812c5..ee52b53 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ invariant: @./test.sh -d test/invariant -p $(profile) coverage: - FOUNDRY_PROFILE=$(profile) forge coverage --no-match-path 'test/invariant/**/*.sol' --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage + FOUNDRY_PROFILE=$(profile) forge coverage --report lcov && lcov --extract lcov.info -o lcov.info 'src/*' && genhtml lcov.info -o coverage gas-report: FOUNDRY_PROFILE=$(profile) forge test --gas-report > gasreport.ansi