Skip to content

Comments

release: v1.0.0-rc.3#8201

Merged
shulaoda merged 1 commit intomainfrom
release-v1.0.0-rc.3-1770204114
Feb 4, 2026
Merged

release: v1.0.0-rc.3#8201
shulaoda merged 1 commit intomainfrom
release-v1.0.0-rc.3-1770204114

Conversation

@github-actions
Copy link
Contributor

@github-actions github-actions bot commented Feb 4, 2026

[1.0.0-rc.3] - 2026-02-04

⚡ Remove Unnecessary Default Export Assignment

  • Eliminates redundant variable assignments when exporting default values
  • Reduces output bundle size and improves code clarity
// index.js
var x = 42;
export default x;

// Before
var x = 42;
var entry_default = x;
export { entry_default as default };

// After
var x = 42;
export { x as default };

🐛 Avoid Unnecessary Facade Chunks

  • Keep user-defined entry modules in their own chunks
  • Reduces HTTP round trips and improves startup performance
// main.js (entry module)
import { a } from './lib.js'
console.log(a)

// lib.js
export * from './counter.js'

// counter.js (entry module)
export const a = 100

// Before
dist/
├── main.js            import { a } from './counter-chunk.js'; console.log(a)
├── counter.js         export { a } from './counter-chunk.js' // ❌ facade chunk
└── counter-chunk.js   export const a = 100

// After
dist/
├── main.js     import { a } from './counter.js'; console.log(a)
└── counter.js  export const a = 100

🚀 Features

🐛 Bug Fixes

💼 Other

🚜 Refactor

📚 Documentation

⚡ Performance

🧪 Testing

⚙️ Miscellaneous Tasks

❤️ New Contributors

@netlify
Copy link

netlify bot commented Feb 4, 2026

Deploy Preview for rolldown-rs ready!

Name Link
🔨 Latest commit 434202c
🔍 Latest deploy log https://app.netlify.com/projects/rolldown-rs/deploys/69832bd8b2bcc6000811c2f1
😎 Deploy Preview https://deploy-preview-8201--rolldown-rs.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.

@shulaoda shulaoda merged commit 3035ec8 into main Feb 4, 2026
9 checks passed
@shulaoda shulaoda deleted the release-v1.0.0-rc.3-1770204114 branch February 4, 2026 12:01
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants