rolldown 1.0.3

Fast JavaScript bundler in Rust, designed for the future of Vite
Documentation
1
2
3
4
5
6
7
8
9
// These URLs should be external automatically
import fs from "node:fs/promises";
fs.readFile();

// This should be external and should be tree-shaken because it's side-effect free
import "node:path";

// This should be external too, but shouldn't be tree-shaken because it could be a run-time error
import "node:what-is-this";