Currently in the process of creating a tarball npm package via npm:
npm run build-release
npm pack dist/
Once that is done, I install the package in a different Angular application using npm install xxx.tgz. This allows me to use components from the first package, but I also need to access the .css files from that project.
Upon examining the generated xxx.tgz file, I noticed that none of the .css files from the project were included. How can I instruct npm to include them so that other projects installing this package can utilize variables defined in the CSS files?