Skip to content

Conversation

Timeless0911
Copy link
Contributor

@Timeless0911 Timeless0911 commented Jun 13, 2025

Summary

bump Rsbuild 1.4.0-beta.3.

Further optimization of esm external render after #1042.

Related to default import, now it is shorter, e.g. external_node_path_default -> node_path.

Source

import path from "node:path";
console.log(path.join("bar"));

Before

import external_node_path_default from "node:path";
console.log(external_node_path_default.join("bar"));

Now

import node_path from "node:path";
console.log(node_path.join("bar"));

Related Links

Checklist

  • Tests updated (or not required).
  • Documentation updated (or not required).

Copy link

netlify bot commented Jun 13, 2025

Deploy Preview for rslib ready!

Name Link
🔨 Latest commit 0a1a721
🔍 Latest deploy log https://app.netlify.com/projects/rslib/deploys/684c6a1df0900300081fa4b2
😎 Deploy Preview https://deploy-preview-1053--rslib.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@Timeless0911 Timeless0911 requested a review from fi3ework June 13, 2025 18:15
Copy link
Member

@chenjiahan chenjiahan left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

@chenjiahan chenjiahan merged commit 26ab243 into main Jun 14, 2025
16 checks passed
@chenjiahan chenjiahan deleted the chore/bump-rsbuild-140-beat-3 branch June 14, 2025 02:13
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants