From 9d2491a808a887f604c4ba091b6a1b7fc6f937b6 Mon Sep 17 00:00:00 2001 From: Rodrigo Willrich Date: Sun, 1 Sep 2013 16:24:42 -0300 Subject: 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. --- bower.json | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'bower.json') 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" -- cgit v1.2.3 From f32abbb6e18b8be2fb35df06ed19b4dc7c6e0f7b Mon Sep 17 00:00:00 2001 From: Rodrigo Willrich Date: Fri, 27 Sep 2013 09:04:33 -0300 Subject: bower.json: Modify `assets` directory on ignore to `docs-assets` --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index 91d667c11..813ab8ee0 100644 --- a/bower.json +++ b/bower.json @@ -5,7 +5,7 @@ "ignore": [ "**/.*", "_*", - "assets", + "docs-assets", "examples", "/fonts", "js/tests", -- cgit v1.2.3 From 3887f540b978d593f433bfef15888bc2d103de72 Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Wed, 6 Nov 2013 13:16:40 -0800 Subject: update remaining version numbers --- bower.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index b5b393003..ed210a01f 100644 --- a/bower.json +++ b/bower.json @@ -1,6 +1,6 @@ { "name": "bootstrap", - "version": "3.0.1", + "version": "3.0.2", "main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css", "./dist/fonts/*"], "ignore": [ "**/.*" -- cgit v1.2.3 From a42d7ff3198ac246bec64d13363c6d911f2e71a3 Mon Sep 17 00:00:00 2001 From: Weston Platter Date: Sat, 23 Nov 2013 12:23:18 -0700 Subject: explicitly call out font files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Using wildcards to specify fonts causes errors for other npm modules, EG, https://github.com/blittle/bower-installer/issues/33. Additionally, it’s better to lock down files included in a library. --- bower.json | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'bower.json') diff --git a/bower.json b/bower.json index 19b7423af..bf60a5113 100644 --- a/bower.json +++ b/bower.json @@ -1,7 +1,14 @@ { "name": "bootstrap", "version": "3.0.2", - "main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css", "./dist/fonts/*"], + "main": [ + "./dist/js/bootstrap.js", + "./dist/css/bootstrap.css", + "./dist/fonts/glyphicons-halflings-regular.eot", + "./dist/fonts/glyphicons-halflings-regular.svg", + "./dist/fonts/glyphicons-halflings-regular.ttf", + "./dist/fonts/glyphicons-halflings-regular.woff" + ], "ignore": [ "**/.*", "_*", -- cgit v1.2.3