Skip to content

Commit

Permalink
chore: remove unnecessary deps duplication between root and main pkg (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed Jun 7, 2023
1 parent ab5ecd3 commit 83f9a05
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 596 deletions.
4 changes: 2 additions & 2 deletions libs/core/src/lib/prompt.ts
Expand Up @@ -23,7 +23,7 @@ export function promptConfirmation(message: string): Promise<boolean> {
.then((answers) => {
log.resume();

return answers.confirm;
return answers["confirm"];
});
}

Expand Down Expand Up @@ -83,6 +83,6 @@ export function promptTextInput(
.then((answers) => {
log.resume();

return answers.input;
return answers["input"];
});
}

0 comments on commit 83f9a05

Please sign in to comment.