When I push my Phoenix 1.4 app to github, I get security vulnerabilties notification on github.
So I decided to investigate.
Running npm audit
in the assets directory, I get the following report:
=== npm audit security report ===
# Run npm install --save-dev copy-webpack-plugin@5.1.1 to resolve 1 vulnerability
SEMVER WARNING: Recommended action is a potentially breaking change
Moderate Cross-Site Scripting
Package serialize-javascript
Dependency of copy-webpack-plugin [dev]
Path copy-webpack-plugin > serialize-javascript
More info https://npmjs.com/advisories/1426
So is it safe to do npm install --save-dev copy-webpack-plugin@5.1.1
because it says it is a potentially breaking change ?