We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c3624f commit 1553245Copy full SHA for 1553245
apps/generator-cli/src/app/services/ui.service.ts
@@ -1,6 +1,6 @@
1
// import ora from 'ora'
2
import {Injectable} from '@nestjs/common';
3
-import prompt from 'inquirer';
+import inquirer from 'inquirer';
4
import Separator from 'inquirer/lib/objects/separator';
5
import {getTable} from 'console.table'
6
@@ -48,7 +48,7 @@ export class UIService {
48
.filter((c) => c instanceof Separator)
49
.length
50
51
- const res = await prompt([{
+ const res = await inquirer.prompt([{
52
type: 'list',
53
name: config.name,
54
pageSize: process.stdout.rows - separatorCount - 1,
0 commit comments