sapegin / grunt-bower-concat

Bower components concatenator for Grunt
MIT License
220 stars 72 forks source link

Blank CSS File #37

Closed jrsprice closed 9 years ago

jrsprice commented 9 years ago

Using the following in my gruntfile.js

bower_concat: {
        all: {
            dest: 'public/js/vendors.js',
            cssDest: 'public/css/vendors.css',
            include: [
                'jquery',
                'bootstrap'
            ]
        }
    },

The bootstrap directory has the bower.json file and lists the main files. The vendors.js file is fine, just nothing for vendors.css. I've also attempted the mainFiles options.

sapegin commented 9 years ago

Works fine for me:

❯ ls -l public/css/
total 136
-rw-r--r-- 1 tema staff 137067 Nov 23 10:59 vendors.css
jrsprice commented 9 years ago

Nm.. just realized this feature was added in 0.4.0... I was on 0.3.0. CSS works fine now.