-
Notifications
You must be signed in to change notification settings - Fork 2
feat: upgrade unenv 1.x to 2.x #159
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Conversation
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
… fixMappedFilesPaths function
jotanarciso
previously approved these changes
May 5, 2025
jotanarciso
approved these changes
May 5, 2025
jotanarciso
pushed a commit
that referenced
this pull request
May 5, 2025
[skip ci] ## [1.20.0-stage.1](v1.19.1...v1.20.0-stage.1) (2025-05-05) ### Features * upgrade unenv 1.x to 2.x (#159) ([60ef725](60ef725))
🎉 This PR is included in version 1.20.0-stage.1 🎉 The release is available on: Your semantic-release bot 📦🚀 |
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.
This pull request introduces several updates to dependencies, configuration changes for the ESBuild bundler, and new polyfills for Node.js modules like
crypto
,fs
,promises
, andstream
. These changes enhance compatibility, improve maintainability, and ensure better support for Node.js features in browser environments.Dependency Updates:
unenv
dependency to version^2.0.0-rc.15
in bothpackage.json
andpackages/bundler/package.json
to leverage the latest features and fixes. [1] [2]ESBuild Configuration Enhancements:
keepNames
andallowOverwrite
options to the ESBuild configuration to improve bundling behavior.applyContentInjection
function to include a production-specific banner for ESBuild, ensuring compatibility with production builds.createAzionESBuildConfig
function to pass thectx
parameter toapplyContentInjection
, enabling context-aware configurations.Polyfills for Node.js Features:
crypto
polyfill, exposing various cryptographic methods and constants to emulate Node.js'scrypto
module in browser environments. [1] [2] [3] [4]promises
polyfill with awithResolvers
utility for enhanced Promise handling. [1] [2] [3]stream
polyfill, providing support forReadable
,Writable
, and other stream-related classes. [1] [2] [3]fs
polyfill to include theexistsSync
method, improving file system compatibility. [1] [2] [3] [4] [5] [6]Node.js Polyfills Configuration:
env
andnodeless
imports fromunenv
with the newdefineEnv
API, enabling better control over polyfill behavior and compatibility. [1] [2]These changes collectively enhance the bundler's capabilities and ensure compatibility with modern Node.js features in browser-based environments.