I was making changes to sistent and I wanted to check out how my changes looked like in meshery. I followed the instructions in the README in sistent very closely, but when I try running make ui-build in meshery, I run into a very long list of errors that all say Module not found: Can't resolve '@sistent/sistent'. For now, as a work around, I resorted to manually copying the dist files from my local sistent into meshery’s node_modules, but it would be great if I could properly link meshery to my local sistent.
Hello @Bharath.Valaboju,
Did you build your local Sistent package after making your changes?
If so, did you then uninstall the existing Sistent package from your Meshery app and install your local build using:
npm install <path-to-your-sistent-package>?
I just wanted to confirm these steps.
After than, you can then run make ui-build
Yes, I did build my local sistent package. After all, my changes did show up in meshery after I manually copied the dist files. Udaybir helped me out on slack. Apparently npm link doesn’t work and npm pack is the way to go.