fix(cli): incorrect ensureDir usage (#5933)

This commit is contained in:
a298003154 2020-03-27 19:56:28 +08:00 committed by GitHub
parent 928b5875de
commit cd07773e34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,6 +1,7 @@
#!/usr/bin/env node
import inquirer from 'inquirer';
import consola from 'consola';
import { ensureDir } from 'fs-extra';
import { VanGenerator } from './generator';
@ -15,10 +16,14 @@ const PROMPTS = [
export default async function run() {
const { name } = await inquirer.prompt(PROMPTS);
ensureDir(name);
try {
await ensureDir(name);
const generator = new VanGenerator(name);
generator.run();
const generator = new VanGenerator(name);
generator.run();
} catch (e) {
consola.error(e);
}
}
run();