I have two projects, Basic, and Concrete. Concrete imports Basic from Git in package.json, package-lock.json.
Right now I'm making some changes to Concrete, and it uses API that comes from Basic. My problem is that currently one of the API functions (create) doesn't return the response to Concrete so cannot read the ID of created item and then use it. I want to change the Basic project locally and then try to use it in Concrete.
Files that need to be changed are inside the .dist folder of Basic, so as I understand that means these are files created after Basic project compilation, so I've changed corresponding source files. How can I now compile Basic project and then import it to Concrete?
I've read about the npm link, is that what I need to use in my case?