我已经厌倦了更改bower默认文件夹。我创建了两个文件
1。 .bowerrc.json 2。 bower.json
.bowerrc.json
档案
{
"directory": "Vendors"
}
和bower.json文件的内容
{
"name": "Sardar",
"description": "Human Resource Management System",
"main": "index.html",
"moduleType": [],
"keywords": [
"AngularJS"
],
"authors": [
"Md. Shohel Rana"
],
"license": "Restrict",
"homepage": "",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"jquery": "^2.2.0"
}
}
两者都是同一根。当我运行命令bower install
时,它将所有内容安装在名为bower_components的文件夹中。但需要安装到无效的Vendors文件夹中。多谢时间。
答案 0 :(得分:0)
从文件.bowerrc.json中删除.json扩展名
并再次运行bower install