KISS:
- No assumption is made on whatever JS libraries or framework you use.
- Use SASS or SCSS
- Wired to use bourbon and neat but you can remove them pretty easily (only two @imports in main.scss)
- Lots of tasks to produce a fully optimised and minified build of your work with usemin, uglifyjs, cssmin, htmlmin, imagemin and svgmin.
You need to have bower
and grunt-cli
installed prior to use this boilerplate.
They should be installed globally using -g
flag.
$ npm install -g bower
$ npm install -g grunt-cli
Then you just need to run these commands:
$ npm install
$ bower install # if you want bourbon and neat
$ grunt serve
$ grunt build
$ grunt serve:dist
To install jquery you should write:
$ bower install --save jquery
$ grunt wiredep
Last line is important to have some magic.