lightfold
Version:
lightweight scaffolding and archiving utility CLI.
15 lines (13 loc) • 374 B
JavaScript
import { getInventory } from "../common/fold";
import { message, error, info } from "../common/out";
const List = () => {
const inventory = getInventory();
const folds = Object.keys(inventory);
if (folds.length > 0) {
info("available folds:");
folds.forEach((x) => message(`• ${x}`));
} else {
error("no folds available");
}
};
export default List;