Skip to content

Commit

Permalink
fix(cli): 修复创建项目时丢失 typescript 选项的问题,close #6180
Browse files Browse the repository at this point in the history
  • Loading branch information
luckyadam committed May 6, 2020
1 parent a926cc5 commit 18790ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/taro-cli/src/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ export default class CLI {
init(kernel, {
appPath: this.appPath,
projectName,
typescript: !!args.typescript,
typescript: args.typescript,
templateSource: args['template-source'],
clone: !!args.clone,
template: args.template,
Expand Down

0 comments on commit 18790ed

Please sign in to comment.