clone bootstrap repository #41226
-
Note: I could not screen shot my command prompt so I paste it in the form of code I try clone the bootstrap repository like this
Then I do npm install like this
notice that 1 high severity vulnerability. I do npm audit and get
Is there a way I can fix that 1 high severity vulnerability problem? since according to copilot it says I shouldn't ignore it. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
There is no easy fix at the moment because the That said, there's no real cause for concern - this package is only used in Bootstrap's development and is listed under For now, we just need to wait for the official update, but this won't affect anyone using Bootstrap in production or working on their own forks. |
Beta Was this translation helpful? Give feedback.
There is no easy fix at the moment because the
ip
library hasn't had an official release with the patch yet, even though it's highly requested by the community (see discussion here). Once a new version is available, Bootstrap will automatically pick up the update when dependencies are refreshed.That said, there's no real cause for concern - this package is only used in Bootstrap's development and is listed under
devDependencies
, meaning it has no impact on the final Bootstrap library. It is only used for running Karma tests locally, where it helps retrieve the machine's IP address for the test runner.For now, we just need to wait for the official update, but this won't affect anyone usi…