我有一个项目依赖于另一个项目,并且都使用Bower。当我在父项目上运行它时,我希望bower install
也在该组件上运行。到目前为止,我还没有在configuration spec,手册页或提示此处的在线文档中找到任何内容,因此我只是导航到子项目目录并再次运行bower install
。有很多依赖项,这是不可行的,因此bower install -R
会很好。
答案 0 :(得分:0)
我无法弄清楚如何使用终端中的'bower'命令来做到这一点 但是我可以成功地使用grunt auto_install来实现此目的。
grunt.initConfig({
"auto_install": {
options: {
recursive: true,
exclude: [
".git",
"node_modules",
"components",
"grunt-tasks",
".sass-cache"
]
}
}
}};