Update deps to remove warning messages#5479
Open
cosmicexplorer wants to merge 2 commits intojashkenas:mainfrom
Open
Update deps to remove warning messages#5479cosmicexplorer wants to merge 2 commits intojashkenas:mainfrom
cosmicexplorer wants to merge 2 commits intojashkenas:mainfrom
Conversation
- regenerate compiled output
Contributor
Author
|
Looks like |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Split out from #5478 so that PR can focus solely on fixing CI.
Problem
Currently we get the following output when running
cake test:Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db Why you should do it regularly: https://github.com/browserslist/browserslist#browsers-data-updatingAdditionally, executing
npmcommands currently produces the following output:9 vulnerabilities (7 high, 2 critical) To address issues that do not require attention, run: npm audit fix To address all issues (including breaking changes), run: npm audit fix --forceSolution
npx update-browserslist-db@latest.npx browserslist@latest --update-dbas in the warning message.npm audit fix --force.Result
This changes our
puppeterandwebpackconstraints inpackage.jsonto^instead of~. We may instead prefer to stick with~.There is also still an additional message produced when executing e.g.
npm ci:npm warn deprecated nomnom@1.5.2: Package no longer supported. Contact support@npmjs.com for more info.This does not seem to be in our direct dependencies, but would probably be good to resolve at some point in the future.