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.

This commit is contained in:
Derek Nutile 2014-09-26 08:26:12 -07:00
parent a3cf3e6c88
commit f35eab87fc
1 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,13 @@
{
"name": "animate.css",
"version": "3.2.0",
"main": "./animate.css"
"main": "./animate.css",
"ignore": [
".*",
"src",
"*.yml",
"Gemfile",
"Gemfile.lock",
"*.md"
]
}