An open API service indexing awesome lists of open source software.

https://github.com/dbox/roots-bower

Sample Bower integration for roots
https://github.com/dbox/roots-bower

Last synced: 6 months ago
JSON representation

Sample Bower integration for roots

Awesome Lists containing this project

README

          

# roots-bower
Roots w/ Sample Bower Integration

## Setup
- make sure [node.js](http://nodejs.org) and [roots](http://roots.cx) are installed
- run `npm install`
- run `bower install`
- run `roots watch`

## Usage
- Uninstall sample bower packages: `bower uninstall jquery --save-dev`, `bower uninstall rrssb --save-dev`
- Install new bower component with `bower install --save-dev` (The `bower_components` directory is currently set to default name and location, change it with: [.bowerrc](http://bower.io/docs/config/))
- Reference the bower package's .css file(s) in `css-manifest.yml`
- Reference the bower package's .js file(s) in `js-manifest.yml`
- If you're using ship to deploy the site, you can get rid of the `after` hook in `app.coffee` then add `ignores: ["public/bower_components/**"]` to your `ship.conf`

Thanks to @hhsnopek for getting this to work.