@selemondev/create-react-next
Version:
The Next Generation React Scaffolding Tool ✨
14 lines (13 loc) • 403 B
text/typescript
import createReactQuestions from '../../questions/react/createReactQuestions'
import initialLog from './initialLog'
import installDeps from './install'
import copyTemplate from './copyTemplate'
async function createProject() {
await initialLog()
await createReactQuestions()
await copyTemplate()
await installDeps();
}
export default async function createReactNext() {
await createProject()
}