I am trying to include zurb-foundation 6 into a yeoman generated project running grunt. Using bower install foundation-sites --save
adds the following files:
- On the app/index.html
<script src="bower_components/what-input/what-input.js"></script>
and - on the app/styles/main.scss
@import "foundation-sites/scss/foundation.scss";
The resultant main.css does not contain all the code for zurb-foundation.
- How can i add all the required files from foundation onto the main.css?
- How can I initialize foundation into the site?
The above should be done using grunt or gulp so i don't have to manually write the code for every project.