You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Have you checked you are on the latest release of Pulsar?
What happened?
It is not properly possible to install a scoped package. The first part of the name is interpreted as package name. eg. @sertonix if the package is called @sertonix/test
When you try to uninstall the package it gives an error because the package.json is not in the expected path.
What steps are needed to reproduce this?
create local package
set the name to a scoped one. eg. @sertonix/test
install package with apm link <path>
check settings
the package will have the name of the scope. eg. @sertonix
Additional Information:
the / is interpreted as a sub folder. To prevent this an escape sequence is required that does not contain / or \\. Maybe use encodeURIComponent for that.
The text was updated successfully, but these errors were encountered:
We can use @ for scoped packages.
If a package start with @ , then it's a scoped packages. One or more packages can be found inside ?
So you can add your @sertonix package, with your package test inside, along with your other packages.
What do you think ?
Thanks in advance for your bug report!
What happened?
It is not properly possible to install a scoped package. The first part of the name is interpreted as package name. eg.
@sertonix
if the package is called@sertonix/test
When you try to uninstall the package it gives an error because the
package.json
is not in the expected path.What steps are needed to reproduce this?
@sertonix/test
apm link <path>
@sertonix
Additional Information:
the
/
is interpreted as a sub folder. To prevent this an escape sequence is required that does not contain/
or\\
. Maybe useencodeURIComponent
for that.The text was updated successfully, but these errors were encountered: