export function runCmd()

in src/commands/run.ts [10:20]


export function runCmd(configFile: string) {
  const timer = process.hrtime();
  const config = fs.readJSONSync(configFile);
  run(config, (err: any) => {
    if (err) {
      console.log(err.message);
    }
    const timeTaken = convertHrtime(process.hrtime(timer)).seconds;
    console.log(`process completed in ${timeTaken} seconds`);
  });
}