How to import the bootstrap in in-repo addons and engines

I am working on a project where I’m trying to import the bootstrap in the in-repo addon that will contain the shared styles and make the styles accessible to the host app, the engines, and the components in the shared addon.

I’ve installed the ember-sass-bootstrap and added the import 'bootstrap/variables' in the in-repo addon styles. But the build is getting failed and throwing this error => File to import not found or unreadable: bootstrap/variables

Can someone provide me input on this?

Have you added ember-sass-bootstrap to your in-repo addon’s package.json? In repo addons need to “pass through” any dependencies they want to use from the host e.g. ”ember-sass-bootstrap “: “*”

yeah, I’ve added that in my in-repo addon package.json file. It working good in host app but it getting failed in the in-repo addon.

Sorry missed this one, have you tried app.importing the css in the host app ember-cli-build.js?