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