我试图在我的.bowerrc
文件中执行此操作
"directory": "~/bower_components"
我要将其解析为当前用户主文件夹:
/home/me/bower_components
但目前正在决定:
[currentDirectory]/~/bower_components
他们是不是一种让它指向绝对路径的方法?
最佳答案
您需要在.bowerrc
中设置的字段是cwd
以便为您的安装提供一个绝对根。
例如,.bowerrc
文件:
{
'cwd': '/var/www/libraries',
'directory': 'vendor'
}
将生成所有
bower update/install
命令来将包放入/var/www/libraries/vendor
中。我尝试使用
~
作为cwd
参数,但鲍尔并不理解这一点。鲍尔希望在
.bowerrc
中找到的文档在this Google doc中。