From f35eab87fcc777c4f727e503d1861b1d238f86b3 Mon Sep 17 00:00:00 2001 From: Derek Nutile Date: Fri, 26 Sep 2014 08:26:12 -0700 Subject: [PATCH] Animate.css is missing the 'ignore' meta entry in bower.json (see: http://bower.io/docs/creating-packages/) and it generates a warning when installing with bower. I've added a simple example of the ignore entry. --- bower.json | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 9ca1bf0..058fbe2 100644 --- a/bower.json +++ b/bower.json @@ -1,5 +1,13 @@ { "name": "animate.css", "version": "3.2.0", - "main": "./animate.css" + "main": "./animate.css", + "ignore": [ + ".*", + "src", + "*.yml", + "Gemfile", + "Gemfile.lock", + "*.md" + ] }