我是CodePush的用户(使用cordova)。我从CodePush is migrating there开始快速检查AppCenter。我注意到AppCenter CLI似乎不像CodePush CLI那样健壮/准备好。
此时我的主要问题是,此命令是否应显示部署历史记录(包括旧的CodePush部署)?
appcenter codepush deployment list -a owner/appName
我发现它只显示了应用的部署密钥,但the documentation似乎还应该显示部署历史记录。我正在尝试使用CLI帮助(as documented),但这会引发错误:
appcenter codepush help
。
我登录到AppCenter用户界面,它确实显示了旧的CodePush发布历史记录。我希望CLI也能如此。我猜我错过了一些简单的东西?
答案 0 :(得分:1)
你应该使用
appcenter codepush deployment history <deployementName>
命令显示最近发布的列表(部署历史记录)。
要使用帮助,您应该在help
arg前加双破折号,例如appcenter codepush --help
。