You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the example-project, if you run pnpm hardhat3 test followed by pnpm build, the build process will fail.
The reason for this failure is that the compilation process consists of two steps:
Compilation of the smart contracts required for testing.
Compilation of the test files to execute the tests.
During the second step, the generated types from the first step are overwritten, causing the pnpm build command to fail because TypeScript can no longer locate the required types.
We need to find a solution to skip the type generation during the second step to prevent this issue.
The text was updated successfully, but these errors were encountered:
In the
example-project
, if you runpnpm hardhat3 test
followed bypnpm build
, the build process will fail.The reason for this failure is that the compilation process consists of two steps:
During the second step, the generated types from the first step are overwritten, causing the
pnpm build
command to fail because TypeScript can no longer locate the required types.We need to find a solution to skip the type generation during the second step to prevent this issue.
The text was updated successfully, but these errors were encountered: