detect "external dependencies" and included them in the SBOM result #444
Replies: 3 comments
-
Well, I can get a workaround by changing my build script to make a prebuild ignoring the external dependencies to get the correct BOM file, and then the normal build. It is slow but works. |
Beta Was this translation helpful? Give feedback.
-
Did some research and found out: So at the time the SBOM is generated, there is no evidence for these externals. |
Beta Was this translation helpful? Give feedback.
-
if anybody comes up with a process/solution to reflect the topic, then lets discuss first, |
Beta Was this translation helpful? Give feedback.
-
Hi! First, thanks for this great plugin.
So, I have a webpack config with some external dependencies like
react
,react-dom
, andlodash
:These dependencies were also added to the
package.json
, but we load them directly from our own CDN. However, there is no information about those in the BOM file.When checking the plugin code I noticed that the
context
property isnull
for external modules and then it is skipped.I would like the external dependencies to be added as well. Any suggestion on how to solve this?
Beta Was this translation helpful? Give feedback.
All reactions