-
-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
uibuilder cannot use packages that are part of an npm @ scope #71
Comments
Stale issue message |
Stale issue message |
Stale issue message |
Stale issue message |
Many thanks to Steve in the forum for the following: Julian, I suspect there is a bug in I tried to add It installed the library into node_modules but never showed the entry in the library list. I debug stepped the uibuilder code in
ends up with the path to whats happening is
... so none of them match the package name ( To work around this I did the following...
and it seems to work (i.e. the package name no longer gets deleted from Hope that helps? |
tilib.findPackage()
expects to find a simple package name and it doesn't cope with @ scoped names. These are always installed in a sub-folder.I think that this is a bit more of an important one than this issue and I will raise a different issue for it.
While probably not that urgent to fix, it will need fixing at some point.
See Also Issue #69 - that issue is mainly about meta-packages (packages that install other packages) rather than this issue which is why I've created this one separately.
As a workaround, you can use one of the workarounds listed in issue 69. It may take me some while to get around to fixing this. In the meantime, if anyone fancies fixing it in a PR, please feel free to do so.
The text was updated successfully, but these errors were encountered: