build: upgrade to @ignored/edr-optimism v0.13.0-alpha.1#6645
Conversation
|
There was a problem hiding this comment.
Pull Request Overview
This PR upgrades the @ignored/edr-optimism package to v0.13.0-alpha.1 and introduces initial observability configuration for code coverage within the provider.
- Introduces a new "observability" block in the provider configuration.
- Adds a placeholder (undefined) for the codeCoverage setting with a TODO to add configurable code coverage options.
Files not reviewed (2)
- pnpm-lock.yaml: Language not supported
- v-next/hardhat/package.json: Language not supported
| networkId: BigInt(networkConfig.networkId), | ||
| observability: { | ||
| // TODO: add configuration of code coverage | ||
| codeCoverage: undefined, |
There was a problem hiding this comment.
The codeCoverage property is currently set to undefined. Please consider wiring it to a value from the ProviderConfig or adding a temporary default value so that the configuration is explicitly defined.
| codeCoverage: undefined, | |
| codeCoverage: networkConfig.codeCoverage ?? false, |
hardhatTotal size of the bundle: List of dependencies (sorted by size) |
|
@Wodann Is it OK if we merge this upgrade as-is and later add actual coverage handling on the hardhat side? |
Yeah, if you'd like, it shouldn't break anything. Would you like me to remove the |
This PR upgrades
@ignored/edr-optimismto v0.13.0-alpha.1, including the following changes: