Advertisement
Guest User

Untitled

a guest
Mar 31st, 2015
227
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # mnd-bootstrap
  2.  
  3. Here are some tips to work with the styleguide.
  4.  
  5. ## 1- Use mnd-bootstrap from an other project
  6.  
  7. Classic worflow here, you have to create a component, change some style, etc... for a scree in some application (lets say mndx-web).
  8. As usual, you will implement the style in the mnd-bootstrap project and use the styleguide to check what you are doing.
  9. But before you push your change and release a new version, you want to try those change in the mndx-web.
  10. With bower, you can add a local dependency, here is how it works:
  11.  
  12. In mnd-bootstrap:
  13. ```
  14. bower link
  15. # Create a local link name mnd-bootstrap to this project
  16. ```
  17.  
  18. In mndx-web:
  19. ```
  20. bower link mnd-bootstrap
  21. # Install mnd-bootstrap from the local link
  22. ```
  23.  
  24. And you are done, every change made in the mnd-bootstrap project are available for you in the mndx-web app.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement