ignoredDependencies does not work
Closed this issue · 1 comments
derwaldgeist commented
I've included the "bootstrap-sass-official" package which itself defines a dependency on jquery:
"dependencies": {
"jquery": ">= 1.9.0"
}
Because I wanted to use the meteor jquery package instead and did not want to include two versions of jquery at the same time, I added this to my bower.json file:
{
"dependencies": {
"bootstrap-sass-official": "~3.x"
},
"ignoredDependencies": [
"jquery"
]
}
I would now expect that jquery is not added to the bower packages, but each time I include the bootstrap-sass-offical, jquery is still downloaded as well. Did I misunderstand the documentation here?
lorensr commented