chore: remove unused axios dependency from ContentProcessorWeb#530
Merged
Roopan-Microsoft merged 1 commit intodevfrom Apr 9, 2026
Merged
chore: remove unused axios dependency from ContentProcessorWeb#530Roopan-Microsoft merged 1 commit intodevfrom
Roopan-Microsoft merged 1 commit intodevfrom
Conversation
Remove axios ^1.13.5 from package.json as all HTTP calls use native fetch via the apiClient.tsx wrapper. Also update documentation references in .github/instructions/ files. - Remove axios from package.json dependencies - Update pnpm-lock.yaml (pnpm install) - Update test-quality.instructions.md to remove axios references - Update code-quality.instructions.md to remove axios from import example Resolves #39065 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Roopan-Microsoft
approved these changes
Apr 9, 2026
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.
Purpose
This pull request removes the unused direct
axiosdependency from the frontendpackage.json. All HTTP calls in the app use nativefetchviaapiClient.tsx, making the direct axios package unnecessary. This reduces the bundle size and removes an unnecessary dependency from the project.Dependency cleanup:
axios: ^1.13.5frompackage.jsondependenciespnpm-lock.yamlto reflect the removal of direct axios lockfile entriesDocumentation updates:
.github/instructions/test-quality.instructions.mdto remove axios references and replace with httpUtility patterns.github/instructions/code-quality.instructions.mdto remove axios from import hygiene exampleDoes this introduce a breaking change?
Golden Path Validation
Deployment Validation
What to Check
Verify that the following are valid
Other Information
react-tiff(devDependency) still pulls axios as a transitive dependency in the lockfile — this is expected and does not affect the direct dependency surfaceResolves AB#39065