From 506e98a1c8582689280893f6bbfc9b71c5774d69 Mon Sep 17 00:00:00 2001 From: Olivier Lecrivain Date: Tue, 21 Oct 2014 16:41:48 +0200 Subject: [PATCH] List main files explicitly to work with "grunt-wiredep" Tools like "wiredep" use the bower "main" property to automatically inject css/js in your index.html. They expect files to be listed explicitly. With the glob notation, grunt-wiredep does not find the "devicons.css" file. --- bower.json | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/bower.json b/bower.json index eba2f92..8756cc2 100644 --- a/bower.json +++ b/bower.json @@ -10,8 +10,11 @@ "homepage": "http://vorillaz.github.io/devicons/", "license": "MIT", "main": [ - "./css/*", - "./fonts/*" + "css/devicons.css", + "fonts/devicons.eot", + "fonts/devicons.svg", + "fonts/devicons.ttf", + "fonts/devicons.woff" ], "ignore": [ "*/.*",