What's wrong with this entry?
This release refactors how Node.js built-in modules are imported throughout the codebase:
- Import modernization: Changed from default imports (e.g.,
import fs from "node:fs") to named imports (e.g.,import { readFileSync, existsSync } from "node:fs").
- Affected modules:
node:child_process,node:fs,node:os,node:path,node:process,node:util,crypto,https,stream,path,child_process
The diff shows 15 removed import statements and 15 added import statements with restructured named imports. Structural similarity is 99.9% with 8,487 internal variable renames typical of minification differences.
Strings lifted out of the shipped bundle, so the claim above can be checked against them.
Related
Other releases about the same thing. Found by shared names or similar wording; neither means one caused the other.