Skip to content

Commit

Permalink
tracer and docs generation config
Browse files Browse the repository at this point in the history
  • Loading branch information
peersky committed Sep 29, 2024
1 parent 9e805af commit c10dbb3
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 1 deletion.
4 changes: 3 additions & 1 deletion hardhat.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import "hardhat-gas-reporter";
import "hardhat-contract-sizer";
import "hardhat-deploy";
import "solidity-docgen";
import "hardhat-tracer";
// import "@nomicfoundation/hardhat-verify";
task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
const accounts = await hre.ethers.getSigners();
Expand All @@ -18,7 +19,8 @@ task("accounts", "Prints the list of accounts", async (taskArgs, hre) => {
export default {
docgen: {
outputDir: "./docs/contracts",
pages: "single",
pages: "files",
templates: "docs/templates",
sourcesDir: "./src",
pageExtension: ".md",
exclude: ["mocks", "initializers", "vendor", "modifiers", "fixtures"],
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@
"hardhat-abi-exporter": "^2.9.0",
"hardhat-contract-sizer": "^2.6.1",
"hardhat-deploy": "^0.12.2",
"hardhat-tracer": "^3.1.0",
"keccak": "^3.0.1",
"mocha": "^10.0.0",
"prettier-plugin-solidity": "^1.4.1",
Expand Down
22 changes: 22 additions & 0 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c10dbb3

Please sign in to comment.