Yeoman generator that scaffolds out a front-end Foundation 6 web app.
For more information on what generator-foundation6
can do for you, take a look at the Grunt tasks used in our package.json
.
npm install -g generator-foundation6
yo foundation6
grunt
for building and grunt serve
for preview*. --allow-remote
option for remote access.(HTML/CSS/JS/Images/etc)
Third-party dependencies are managed with grunt-wiredep. Add new dependencies using Bower and then run the Grunt task to load them:
$ bower install --save jquery
$ grunt wiredep
This works if the package author has followed the Bower spec. If the files are not automatically added to your source code, check with the package's repo for support and/or file an issue with them to have it updated.
To manually add dependencies, bower install --save depName
to get the files, then add a script
or style
tag to your index.html
or another appropriate place.
The components are installed in the root of the project at /bower_components
. To reference them from index.html, use src="https://github.com/bassjobsen/generator-foundation6/raw/master/bower_components"
or src="https://github.com/bassjobsen/generator-foundation6/raw/master/bower_components"
. Treat the bower_components
directory as if it was a sibling to index.html
.
Testing Note: a project checked into source control and later checked out needs to have bower install
run from the test
folder as well as from the project root.
Note: grunt server
was used for previewing in earlier versions of the project, and has since been deprecated in favor of grunt serve
.
We have recipes for integrating other popular technologies like Compass.
--skip-install
Skips the automatic execution of bower
and npm
after scaffolding has finished.
--test-framework=<framework>
Either mocha
or jasmine
. Defaults to mocha
.
--no-babel
Turn off Babel support.
See the contributing docs.
Note: We are regularly asked whether we can add or take away features. If a change is good enough to have a positive impact on all users, we are happy to consider it.