UNPKG

create-simple-projects

Version:

Create simple project with ts, jest, eslint, prettier and other stuff.

14 lines (11 loc) 386 B
#!/usr/bin/env ts-node import { createProject } from './createProject'; import { fillInquirer } from './inquirer'; import { createOptionsFromAnswers } from './options'; import { postProcess } from './postProcess'; (async function () { const answers = await fillInquirer(); const options = createOptionsFromAnswers(answers); createProject(options); postProcess(options); })();