What's wrong with this entry?
Anonymous. No account, no email.
Import Optimizations
- Refined stream module imports: Changed from importing the entire
streammodule to specifically importing only theReadableclass. This improves bundle size and load times.
// Before: import BM4 from "stream";
// After: import { Readable as tE4 } from "stream";
- Refined process module imports: Changed from importing the entire
node:processmodule to specifically importing only thecwdfunction. This follows Node.js best practices for named imports.
// Before: import gc2 from "node:process";
// After: import { cwd as GV0 } from "node:process";
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.