import fs from "fs/promises"; import { mkdir_to, exec_i } from "../lib/builderator.js"; import { log } from "../lib/logging.js"; export const description = "Test command."; export const options = [ ["--force", "obliterate files in the target directory", false] ]; export const argument = ["", "name of the project"]; export const main = async (opts) => { }