quaertym / ember-cli-dependency-checker

Ember CLI addon for checking missing node and bower dependencies before running ember commands
MIT License
40 stars 37 forks source link

Ability to specify a whitelist #14

Closed simonexmachina closed 9 years ago

simonexmachina commented 9 years ago

It's possible (and not uncommon) to install packages using bower that don't have a bower.json. For example, Sinon.js doesn't provide a Bower package, so you install it using an HTTP URL:

"sinon": "http://sinonjs.org/releases/sinon-1.10.0.js",

This is reported as "(not installed)" by this module and prevents ember-cli from starting. The only workaround that I can see is to remove this module.

It would be good to be able to specify a "whitelist" of packages that should be ignored.

quaertym commented 9 years ago

Fixed by 6ddb025839393a12590d58f48329096b0e33b1ed.