我列出(和/或安装)与bower在bower.json文件和/或与中的几个依赖
bower install https://github.com/username/project.git
这工作正常。
现在我可以列出所有他们
bower list
然后我可以选择我的项目的每个依赖项的名称并运行
bower update dependency-name
Question: How can I bulk update all of them? Or do I have to write a shell script to loop through and update them?
您可以通过运行bower update更新所有。
原文链接:https://www.f2er.com/javaschema/282747.html对任何命令使用-h标志,以了解如何使用它。例如bower update -h。