Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(taro-plugin-mini-ci): 修复字节跳动小程序上传命令报错问题([QRCode Error] Error: No input text) #14974

Merged
merged 4 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/taro-plugin-mini-ci/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"dingtalk-miniapp-opensdk": "^1.0.7",
"jd-miniprogram-ci": "^1.0.2",
"minidev": "^1.5.1",
"tt-ide-cli": "^0.1.13"
"tt-ide-cli": "^0.1.20"
},
"peerDependenciesMeta": {
"dingtalk-miniapp-opensdk": {
Expand Down
4 changes: 2 additions & 2 deletions packages/taro-plugin-mini-ci/src/TTCI.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default class TTCI extends BaseCI {
process.exit(1)
}
try {
// 调试使用版本是: tt-ide-cli@0.1.13
// 调试使用版本是: tt-ide-cli@0.1.20
this.tt = getNpmPkgSync('tt-ide-cli', process.cwd())
} catch (error) {
printLog(processTypeEnum.ERROR, chalk.red('请安装依赖:tt-ide-cli'))
Expand All @@ -41,7 +41,7 @@ export default class TTCI extends BaseCI {
path: this.projectPath
}
})
console.log(chalk.green(`打开IDE成功`))
console.log(chalk.green('打开IDE成功'))
} catch (error) {
printLog(processTypeEnum.ERROR, chalk.red('打开IDE失败', error))
}
Expand Down
Loading