Skip to content

Commit

Permalink
Remove TS workaround for @types/prompts (#1625)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amit Dahan authored and ronami committed Oct 27, 2019
1 parent f53fffc commit 664a75d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/create-yoshi-app/package.json
Expand Up @@ -49,7 +49,7 @@
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/parse-git-config": "^3.0.0",
"@types/prompts": "^2.0.1",
"@types/prompts": "^2.0.2",
"@types/semver": "^6.0.2",
"@types/validate-npm-package-name": "^3.0.0",
"chokidar": "^2.0.4",
Expand Down
3 changes: 1 addition & 2 deletions packages/create-yoshi-app/src/getQuestions.ts
Expand Up @@ -58,8 +58,7 @@ export default (): Array<PromptObject<string>> => {
message: 'Choose project type',
choices: templates.map(project => ({
title: project.name,
// https://github.com/DefinitelyTyped/DefinitelyTyped/pull/39269
value: project as any,
value: project,
})),
},
{
Expand Down

0 comments on commit 664a75d

Please sign in to comment.