From 42bfd5d2c14c266e9d1ae602f00ca80a95cb8170 Mon Sep 17 00:00:00 2001 From: Francesco Pontillo Date: Wed, 23 Sep 2015 09:25:26 +0200 Subject: [PATCH] Include CSS in bower.json main The Bower JSON needs to include CSS files as well, beyond scripts. See [spec](https://github.com/bower/bower.json-spec#main). --- bower.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/bower.json b/bower.json index 60509aa..08f137f 100644 --- a/bower.json +++ b/bower.json @@ -9,7 +9,10 @@ } ], "description": "A responsive dual listbox widget optimized for Twitter Bootstrap. It works on all modern browsers and on touch devices.", - "main": "src/jquery.bootstrap-duallistbox.js", + "main": [ + "src/jquery.bootstrap-duallistbox.js", + "src/bootstrap-duallistbox.css" + ], "dependencies": { "jquery": "~2.0.3", "bootstrap": ">=2.3.2"