我刚刚使用 bower 在我的项目中包含了 Materialize,但不幸的是, ./bower_components/materialize/dist/中始终缺少字体文件夹。
这是我的 bower.json
{
"name": "teahrm",
"authors": [
"Yusuf Ibrahim <mhyusufibrahim@gmail.com>"
],
"description": "teahrm web app",
"main": "",
"license": "MIT",
"homepage": "",
"private": true,
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"dependencies": {
"underscore": "^1.8.3",
"backbone": "^1.3.3",
"backbone.localStorage": "Backbone.localStorage#^2.0.0"
}
我直接将它检查到github 存储库并在我的本地环境中使用 git 克隆它,我意识到 fonts/roboto 文件夹已经存在(~/test/materialize/dist)。
我的问题是:
- 我的凉亭出了什么问题,为什么它一直忽略 materialize/dist/font 文件夹以进行下载?
- 如何修复它,或者我应该手动添加字体文件夹?
- 像包管理器这样的其他凉亭是否比它更可靠?