pixelmord / generator-drupaltheme

Yeoman generator for a Drupal theme
MIT License
44 stars 4 forks source link

Bootstrap #5

Open gstout opened 10 years ago

gstout commented 10 years ago

I'm very excited to see you building a generator for themes. I'm not sure I understand how bootstrap is integrated after running your generator. I see it in the libraries section but I don't see it adding references to bootstrap in any of the theme files or the.info or template.php nor does it appear to be magically being added in some step I'm missing.

Am I supposed to manually connect it up or is there another yo/grunt/build step that I'm not understanding?

I watched your video here as well but didn't gain any clarity. https://www.youtube.com/watch?v=5YnC7iQBObk

Thanks, Greg

pixelmord commented 10 years ago

Hi Greg, there is no direct use or import of the bootstrap partials. However the bootstrap path gets added as import path into the compilation configuroation @see "config.rb". So you can just include whatever partial you like into your base style sheet "style.scss". My thought was to stay framework agnostic, but also to enable developers a quick start by making the inclusion of BS really easy.

Hope that helps!