fix(plugins): Use explicit node: imports for native path and stream modules in ts/plugins.ts

This commit is contained in:
2025-11-20 13:38:53 +00:00
parent e147a077f3
commit 429375a643
4 changed files with 8129 additions and 3 deletions

View File

@@ -1,5 +1,11 @@
# Changelog
## 2025-11-20 - 4.0.1 - fix(plugins)
Use explicit node: imports for native path and stream modules in ts/plugins.ts
- Replaced imports of 'path' and 'stream' with 'node:path' and 'node:stream' in ts/plugins.ts.
- Ensures correct ESM resolution of Node built-ins when package.json type is 'module' and avoids accidental conflicts with userland packages.
## 2025-11-20 - 4.0.0 - BREAKING CHANGE(core)
Make API strict-by-default: remove *Strict variants, throw on not-found/exists conflicts, add explicit exists() methods, update docs/tests and bump deps