Fix: Finish migration to Webpack 5, add ProvidePlugin for process polyfill to resolve "process is not defined" error#181
Merged
bghcore merged 3 commits intomicrosoft:mainfrom Jan 29, 2026
Conversation
ca1eb
approved these changes
Jan 29, 2026
MSSunnyNayak
approved these changes
Jan 29, 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.
Thank you for your contribution. Before submitting this PR, please include:
Id of the task, bug, story or other reference
Description
Fixes "process is not defined" error occurring in CICD fresh builds by properly configuring webpack 5 to polyfill Node.js process global for browser environments.
Problem
After upgrading to webpack 5 in v0.5.20, the SDK bundle was failing in CICD with ReferenceError: process is not defined. This error occurred because:
Changes
- Added webpack.ProvidePlugin to automatically inject process/browser polyfill when code references process global
- Added resolve.fallback configuration for process/browser
- Added process@0.11.10 to devDependencies
- Bumped version to 0.5.21
- Documented the fix and changes for v0.5.21
Solution Proposed
Detail what is the solution proposed, include links to design document if required or any other document required to support the solution.
Acceptance criteria
Define what are the conditions to consider the PR has achieved the intended goal
Test cases and evidence
Include what test cases were considered, any evidence of testing for future references, to identify any corner cases, etc.
Sanity Tests
A11y
*Please provide justification if any of the validations has been skipped._