UNPKG

@agametis/create-app-for-fm

Version:

Tool for selecting a starter project for FileMaker applications

18 lines (14 loc) 452 B
import {GITHUB_CONFIG} from "../config.js"; import {t} from "../i18n.js"; export function listTemplates() { console.log(t("list.availableTemplates")); GITHUB_CONFIG.repositories.forEach((repo) => { console.log(`📦 ${repo.name}`); if (repo.description) { console.log(` ${repo.description}`); } console.log(` ${GITHUB_CONFIG.baseUrl}${repo.path}`); console.log(""); }); console.log(t("list.useInfoCommand")); }