Skip to content

Commit

Permalink
Bower: Ignore development and documentation files on bower.json. Fix #…
Browse files Browse the repository at this point in the history
…10313.

I've kept only the files I consider relevant to bower installation:

- Files in dist directory;
- Files in js directory;
- Files in less directory;
- bower.json file;
- README.md file;
- LICENSE file.
  • Loading branch information
rwillrich committed Sep 1, 2013
1 parent 9369489 commit 9d2491a
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,19 @@
"version": "3.0.0",
"main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css", "./dist/fonts/*"],
"ignore": [
"**/.*"
"**/.*",
"_*",
"assets",
"examples",
"/fonts",
"js/tests",
"CNAME",
"CONTRIBUTING.md",
"Gruntfile.js",
"browserstack.json",
"composer.json",
"package.json",
"*.html"
],
"dependencies": {
"jquery": ">= 1.9.0"
Expand Down

2 comments on commit 9d2491a

@tomfuertes
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

<3 this commit. Thanks!

@rwillrich
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.