Nuxt/packages/nuxi/src/commands/init.ts
2022-04-29 10:53:58 +02:00

65 lines
2.0 KiB
TypeScript

import { existsSync, readdirSync } from 'node:fs'
import createTiged from 'tiged'
import { relative, resolve } from 'pathe'
import superb from 'superb'
import consola from 'consola'
import { defineNuxtCommand } from './index'
const rpath = p => relative(process.cwd(), p)
const resolveTemplate = (template) => {
if (typeof template === 'boolean') {
consola.error('Please specify a template!')
process.exit(1)
}
if (!template) {
template = 'v3'
}
if (template.includes('/')) {
return template
}
return `nuxt/starter#${template}`
}
export default defineNuxtCommand({
meta: {
name: 'init',
usage: 'npx nuxi init|create [--verbose|-v] [--template,-t] [dir]',
description: 'Initialize a fresh project'
},
async invoke (args) {
// Clone template
const src = resolveTemplate(args.template || args.t)
const dstDir = resolve(process.cwd(), args._[0] || 'nuxt-app')
const tiged = createTiged(src, { cache: false /* TODO: buggy */, verbose: (args.verbose || args.v) })
if (existsSync(dstDir) && readdirSync(dstDir).length) {
consola.error(`Directory ${dstDir} is not empty. Please pick another name or remove it first. Aborting.`)
process.exit(1)
}
const formatArgs = msg => msg.replace('options.', '--')
tiged.on('warn', event => consola.warn(formatArgs(event.message)))
tiged.on('info', event => consola.info(formatArgs(event.message)))
try {
await tiged.clone(dstDir)
} catch (e) {
if (e.toString().includes('could not find commit hash')) {
consola.warn('Make sure you have installed `git` correctly')
process.exit(1)
}
throw e
}
// Show neet steps
console.log(`\n 🎉 Another ${superb.random()} Nuxt project just made! Next steps:` + [
'',
`📁 \`cd ${rpath(dstDir)}\``,
'💿 Install dependencies with `npm install` or `yarn install` or `pnpm install --shamefully-hoist`',
'🚀 Start development server with `npm run dev` or `yarn dev` or `pnpm run dev`',
''
].join('\n\n '))
}
})