我看到了这个问题,但它并没有完全满足我的需求:How to npm install to a specified directory?
我有一个包含我在项目中使用的所有sass样板的repo。我想通过NPM或其他方式将它包含在我的项目中,但我不能将它放在node_modules
目录(或bower_comonents
)中。
是否有办法将npm install
/ bower install
回购(或包)的内容发送到不是node_modules
或bower_components
的目录?
答案 0 :(得分:1)
对于Bower,您可以使用bower配置文件(.bowerrc)中的directory属性设置应保存已安装组件的路径(默认为bower_components):
{
"directory": "app/components/"
}