l33z3r
l33z3r

Reputation: 615

Include a raw js library in my ember cli project

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

Answers (1)

Leeft
Leeft

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

Related Questions