I'm trying to use Faye in my ember project. I have this import line in my brocfile
app.import('bower_components/faye-browser/index.js');
And the corresponding bower.json entry looks like this:
"faye-browser": "http://af2447c3.fanoutcdn.com/bayeux/static/faye-browser.js",
Just to be sure I checked and indeed I have a file named "bower_components/faye-browser/index.js".
However, no matter what I do and how I build, the content of faye-browser/index.js simple does not exist anywhere in vendor.js, nor anywhere else in the output folder (/dist).
Ember don't give me any error or explanation as to why it ignores this file. It just ignores it, and "Faye" is undefined in my ember js.
I've seen this question already: Testing Emberjs app using QUnit and Karma fails due to `ReferenceError: Faye is not defined` but it didn't work.