Code Optimization#
What's wrong with this entry?
What: Refactored module imports to use named exports instead of namespace imports
Details:
- Changed
import OFQ from "stream"toimport { PassThrough as so5 } from "stream"at line 444692 - Changed
import $9Q from "node:process"toimport { cwd as $7A } from "node:process"at line 357152 - These changes improve bundle optimization and tree-shaking by importing only the specific functions needed rather than entire modules
- No functional changes to the CLI behavior or available commands
- Evidence: Import refactoring at lines 357152 and 444692
Impact: This is purely an internal optimization that may slightly reduce the CLI's memory footprint and startup time, but users will not notice any behavioral differences.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.