Summary #
Version 0.2.52 includes minor internal refactoring with no user-facing changes. The update focuses on improving import specificity for better code organization.
Version 0.2.52 includes minor internal refactoring with no user-facing changes. The update focuses on improving import specificity for better code organization.
stream module to specifically importing only the Readable class. This improves bundle size and load times. // Before: import BM4 from "stream";
// After: import { Readable as tE4 } from "stream";
node:process module to specifically importing only the cwd function. This follows Node.js best practices for named imports. // Before: import gc2 from "node:process";
// After: import { cwd as GV0 } from "node:process";
This is a maintenance release with no new features, bug fixes, or breaking changes. The import refinements are part of ongoing code quality improvements but have no impact on CLI functionality or user experience.