Skip to content
James Kyle edited this page Nov 1, 2013 · 2 revisions

Installing with npm

npm install ballistic --save-dev

Installing with Bower

bower install ballistic --save-dev

Setting up Sass

After you have installed ballistic, you'll probably want to add ballistic to your sass :load_paths, this can be easily done with grunt loadPath or compass (additional_import_paths).

npm   './node_modules/bootcamp/dist'
bower './bower_components/bootcamp/dist'

Then import ballistic into your sass.

app.scss
@import "ballistic"; // or "[node_modules|bower_components]/ballistic/dist/ballistic" if you didn't set load_paths
Clone this wiki locally