locklift
Version:
Node JS framework for working with Ever contracts. Inspired by Truffle and Hardhat. Helps you to build, test, run and maintain your smart contracts.
16 lines (12 loc) • 314 B
text/typescript
import { Command } from "commander";
import { BuildCache } from "../../buildCache";
import * as process from "process";
const program = new Command();
program
.name("clean")
.description("Clean cache folder")
.action(() => {
BuildCache.clearCache();
process.exit(0);
});
export default program;