Import Statement Reorganization #
What: The codebase has reorganized how Node.js core modules are imported, moving from default imports to more specific destructured imports in several locations.
Details:
- Replaced default import
import cr from "stream"with destructuredimport { PassThrough as KR8 } from "stream"at line 465525 - Replaced default import
import o90 from "node:child_process"with destructuredimport { execSync as N2B, spawn as dM6 } from "node:child_process"at line 247555 - Added new destructured import
import { cwd as GwA } from "node:process"at line 70285, removing default importimport mjQ from "node:process"at line 464092 - Impact: These are internal refactoring changes with no effect on functionality or user experience. The same capabilities exist with different internal variable names.
- Evidence: Import changes verified at lines 12585→465525 (stream), 35787→247555 (child_process), 464092→70285 (process)