This is a bug that appears on case-sensitive systems such as Unix, Linux, and some OS X (if they are set to be case-sensitive).
So far, to fix this, you need to find the files containing this line:
Q = require('Q')
You can find the files in the project directory using grep:
grep -HnrI "require('Q" *;
then use any text editor to manually change the specified line to:
Q = require('q')
Alternatively, you can edit related files in a simpler way by running the following command in the project directory:
grep -rl "require('Q" * | xargs sed -i "" "s/'Q'/'q'/g";
One line above searches for and edits files that need to be changed.
source share