ELSPROBLEMS error when running #109
Codex-
started this conversation in
Show and tell
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This is more of an FYI and how to resolve this error than any action required by the team, but posting here so others may benefit from it.
Running this for the first time may lead you to an ELSPROBLEMS error like this:
We can see it more clearly simply using the
> npm ls --json -a -l
command:These can be self-healed by
npm
by simply installing the packages effected then uninstalling them (returning them to the locked state of the dependency):Now when you run
npm ls --json -a -l
again you may meet another package that needs the same treatment, after you've resolved these you should be able to usecyclonedx-npm
normally 🚀I suppose a followup question to this is: Since we know how to resolve these simple cases, should this functionality be tied into
cyclonedx-npm
?Beta Was this translation helpful? Give feedback.
All reactions