When I try to bower install --save px-data-table in my Angular 2 app, I get the following error:
bower ECONFLICT Unable to find suitable version for webcomponentsjs
Unaware how to fix this, considering I do not have webcomponentsjs installed (I checked both my package.json and my bower.json.
Looks like running the command with the
--force-latestflag fixed the issue for me. Full command:bower install --force-latest --save px-data-table.Still looking for clarification here if anyone can explain why bower was not looking for the latest version by default.