-
Hi there, thanks so much for putting this library out, hopefully I can contribute to it at some point. I'm trying to use functionality from the core verite lib into my own UI, and I'm not sure how to build just that part into my own project. I'm not super familiar with workspaces--how would I go about installing just the core lib ( |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Well, I figured out the problem. Verite has some dependencies written to work in NodeJS and not necessarily in the browser, so I just had to polyfill the Node-specific feature in my app's build process. Once I did that |
Beta Was this translation helpful? Give feedback.
-
Thanks @cwarny, glad you figured it out. One other thing -- you also may need to run |
Beta Was this translation helpful? Give feedback.
Well, I figured out the problem. Verite has some dependencies written to work in NodeJS and not necessarily in the browser, so I just had to polyfill the Node-specific feature in my app's build process. Once I did that
npm i verite
seems to be working.