hardhat
Version:
Hardhat is an extensible developer tool that helps smart contract developers increase productivity by reliably bringing together the tools they want.
10 lines • 342 B
JavaScript
/**
* Compile task action is an alias of the build task action, it invokes
* the build task to ensure any build overrides are properly executed when
* compile is run.
*/
const compileAction = async (args, hre) => {
return await hre.tasks.getTask("build").run(args);
};
export default compileAction;
//# sourceMappingURL=compile.js.map