diff options
| author | Rodrigo Willrich <[email protected]> | 2013-09-01 16:24:42 -0300 |
|---|---|---|
| committer | Rodrigo Willrich <[email protected]> | 2013-09-01 16:50:24 -0300 |
| commit | 9d2491a808a887f604c4ba091b6a1b7fc6f937b6 (patch) | |
| tree | c84e3e79f5671365acb3d87c1bf38d50fef387f1 | |
| parent | 93694898838b479d2806c53c827847f724312bcc (diff) | |
| download | bootstrap-9d2491a808a887f604c4ba091b6a1b7fc6f937b6.tar.xz bootstrap-9d2491a808a887f604c4ba091b6a1b7fc6f937b6.zip | |
Bower: Ignore development and documentation files on bower.json. Fix #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.
| -rw-r--r-- | bower.json | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/bower.json b/bower.json index 0d03da6c9..91d667c11 100644 --- a/bower.json +++ b/bower.json @@ -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" |
