Hello, I was trying to customize workspace on solidStart template example, from bun's guide.
Link to repository https://github.com/AlexeyMatskevich/bunatest
I took the example from the standard template and moved it to the apps/reviewer package and added a second libs/auth package. Everything is as described in the official bun workspace guide.
The workspaces themselves are successfully installed. However, I have had problems using them.
I'm not sure where the correct place to ask, the bun community or the vite/solid communities.
The essence of the problem is that when trying to use a component defined in the auth package in another package - reviewer, nothing works.
I have defined an authCounter component in auth - https://github.com/AlexeyMatskevich/bunatest/blob/main/libs/auth/src/auth_counter.tsx
And I import it into the reviewer - https://github.com/AlexeyMatskevich/bunatest/blob/main/apps/reviewer/src/routes/index.tsx#L3
then I use it inside the Home component - https://github.com/AlexeyMatskevich/bunatest/blob/main/apps/reviewer/src/routes/index.tsx#L10
The import doesn't cause any errors, but the imported component just shows up in the browser as is.
That is, the <authCounter/> tag is simply inserted into the document.
Any ideas?
Thanks!