本文介绍了使用Bower更新多个依赖项的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我列出了(和/或安装了)bower.json
文件中Bower和/或
I listed (and/or installed) several dependencies with Bower inside the bower.json
file and/or with
bower install https://github.com/username/project.git
那很好.
现在我可以列出所有这些
Now I can list all them with
bower list
然后我可以选择项目的每个依赖项的名称并运行
and then I can pick the name of each dependency of my project and run
bower update dependency-name
推荐答案
您可以通过运行bower update
进行全部更新.
You can update all by running bower update
.
在任何命令上使用-h
标志可以查看如何使用它.例如bower update -h
.
Use the -h
flag on any command to see how you can use it. Eg bower update -h
.
这篇关于使用Bower更新多个依赖项的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!