hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
21 lines • 673 B
JavaScript
import { definePlugin } from "../../../plugins.js";
import { globalFlag } from "../../core/config.js";
const hardhatPlugin = definePlugin({
id: "builtin:coverage",
tasks: [],
globalOptions: [
globalFlag({
name: "coverage",
description: "Enables code coverage",
}),
],
hookHandlers: {
clean: () => import("./hook-handlers/clean.js"),
hre: () => import("./hook-handlers/hre.js"),
solidity: () => import("./hook-handlers/solidity.js"),
test: () => import("./hook-handlers/test.js"),
},
npmPackage: "hardhat",
});
export default hardhatPlugin;
//# sourceMappingURL=index.js.map