javascriptfontsbowermaterializeroboto

Missing fonts folder in bower Materialize


I just included Materialize in my project using bower, but unfortunately the fonts folder is keep missing from ./bower_components/materialize/dist/.

enter image description here

This is my 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"
}

I checked it directly to the github repository and cloned it using git on my local environment and I realized that the fonts/roboto folder is already there (~/test/materialize/dist).

enter image description here

My question is:

  1. what's wrong with my bower, why does it keep ignoring materialize/dist/font folder for being downloaded ?
  2. How to fix it, or should I just add the fonts folder manually ?
  3. Is the any other bower like package manager that more reliable than it?

Solution

  • using the materialize version "0.99.0" in bower.json fix this problem