Reputation: 615
I would like to simply download this library and include it in my ember cli project.
It is not available as a bower package, what should I do?
https://github.com/appendto/jquery-mockjax.git
thanks
Upvotes: 0
Views: 170
Reputation: 3837
Something like this should do:
bower install --save appendto/jquery-mockjax
You may notice this uses github-user/repository-name
Brocfile.js:
app.import( 'bower_components/jquery-mockjax/jquery.mockjax.js' );
Upvotes: 2