We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wiredep seems to ignore the 'ignoredDependencies' config option from .bowerrc.
.bowerrc
This is problematic as now users have to duplicate config options.
For example our .bowerrc has this:
{ "directory": "bower_components", "ignoredDependencies": [ "bootstrap" ] }
However wiredep will then fail later due to:
[16:42:50] gulp-inject Nothing to inject into index.scss. stream.js:74 throw er; // Unhandled stream error in pipe. ^ Error: Error: bootstrap is not installed. Try running `bower install`.
To fix this we had to add a overrides config to our wiredep config (which took us a good hour or so to figure out):
overrides
exports.wiredep = { // exclude: [/\/bootstrap\.js$/], directory: 'bower_components', "overrides": { "angular-bootstrap-confirm": { "dependencies": { "angular": ">=1.3.0", "angular-sanitize": ">=1.3.0" } } } };
This seems pretty error prone and slightly redundant.
We like wiredep a lot, would it be possible for wiredep to look into the .bowerrc so the extra wiredep config is not needed?
Thank you very much.
The text was updated successfully, but these errors were encountered:
i also have this issue!
Sorry, something went wrong.
Having the same issue!
No branches or pull requests
Wiredep seems to ignore the 'ignoredDependencies' config option from
.bowerrc
.This is problematic as now users have to duplicate config options.
For example our
.bowerrc
has this:However wiredep will then fail later due to:
To fix this we had to add a
overrides
config to our wiredep config (which took us a good hour or so to figure out):This seems pretty error prone and slightly redundant.
We like wiredep a lot, would it be possible for wiredep to look into the
.bowerrc
so the extra wiredep config is not needed?Thank you very much.
The text was updated successfully, but these errors were encountered: