hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
17 lines • 502 B
JavaScript
import { task } from "../../core/config.js";
import "./type-extensions.js";
const hardhatPlugin = {
id: "builtin:clean",
tasks: [
task("clean", "Clear the cache and delete all artifacts")
.addFlag({
name: "global",
description: "Clear the global cache",
})
.setAction(async () => import("./task-action.js"))
.build(),
],
npmPackage: "hardhat",
};
export default hardhatPlugin;
//# sourceMappingURL=index.js.map