UNPKG

flores-create

Version:

The CLI tool for creating a new Flores website.

13 lines (11 loc) 207 B
#!/usr/bin/env node /* eslint no-console: "off" */ const cli = require("./cli"); (async () => { try { await cli(); } catch (error) { console.error(error.message); process.exit(1); } })();