Update docs

This commit is contained in:
github-actions
2023-10-03 20:44:25 +00:00
parent d41aab7c1a
commit 074bd84f35
2 changed files with 5 additions and 1 deletions

View File

@ -61,6 +61,10 @@ require('hardhat-exposed');
require('solidity-docgen');
argv.foundry && require('@nomicfoundation/hardhat-foundry');
if (argv.foundry && argv.coverage) {
throw Error('Coverage analysis is incompatible with Foundry. Disable with `FOUNDRY=false` in the environment');
}
for (const f of fs.readdirSync(path.join(__dirname, 'hardhat'))) {
require(path.join(__dirname, 'hardhat', f));
}