Hello everyone,
I'm trying to build a pipeline to deploy my angular14 app into a private server.
I'm facing this issue:
as we've built a custom angular material theme in our app we have changed some files within 'node_modules' folder.
Within the styles.css file there are references at that particular theme defined in a file within angular material folder in node_modules.
I can't run 'npm install' command in my pipeline as we lose the definition of our custom theme and we get an error in the building phase caused by the references defined in 'styles.css' file.
Is there a way to push my 'node_modules' folder within the docker container within the pipeline instead of installing the dependencies from 'package.json'?
The 'caching' solution seems to not be helpful to this particular case..
Does anyone have a solution?
Thanks in advance,
Costantino.