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.
Closes #868.
When I run
npm ci
on themaster
branch, I see the following warning:I think this is related to our upgrade to Node 20 (#899). However, after I updated
@achrinza/node-ipc
, the warning went away.I also ran
npm audit fix
, which resolved@babel/traverse
and partially resolvedpostcss
. I think we'll need to move away from Vue CLI to fully resolvepostcss
(#671). However, I also don't think thepostcss
issue affects us.Resolving
axios
required a change to the major version. I updated from 0.22.0 to 1.6.2 (!). This is the change that I think has the most risk. However, tests continue to pass.axios
is such a widely used package, and we don't use it in very complicated ways, so I'm hopeful that even though it's a big change, we won't run into issues.What has been done to verify that this works as intended?
Tests continue to pass. We'll also see whether any issues come up during regression testing.
Before submitting this PR, please make sure you have:
npm run test
andnpm run lint
and confirmed all checks still pass OR confirm CircleCI build passes