-
Notifications
You must be signed in to change notification settings - Fork 2
Home
David Zulaica edited this page Mar 1, 2016
·
28 revisions
- Clone addon repo
git clone git@github.com:revelation/ember-cli-revelation-ui.git - Cd into addon directory
- Run
bower install && npm install - Run
npm link - Navigate to project directory
- Run
npm link ember-cli-revelation-ui - Open
package.jsonin project - Add
"ember-cli-revelation-ui": "*",todevDependencies - Run
bower installafter - Run
ember g ember-cli-revelation-uito manually init blueprint - Include in the top of consuming app's
app/styles/app.sassfile the import ref@import node_modules/ember-cli-revelation-ui/app/styles/rui-base(you will have to renameapp.cssor create the file if it doesn't exist).
- if you run into issues when pulling addon updates you may occassionally have to relink your project directory (steps #4-6 above) esp. when deleting
bower_componetsdir. - if you run into further issues try running from project directory:
rm -rf distrm -rf bower_components && bower cache clean && bower installrm -rf node_modules && npm cache clean && npm installember g ember-cli-revelation-ui