Patches
-
Removes
node:
prefix from all CommonJS modules (#215).
You will get these files via arequire
statement.The ESM version of each package still has the
node:
prefix. You will only get this version if you are usingimport
syntax.
Thenode:
prefix was added in 16.x and back-ported to 14.18 (docs), so ensure you're on at least one of those versions. While native ESM was technically added in 12.x, it's been end-of-life (including security) for ~3 years and its version of "ESM" is significantly broken/different than today's ESM... 12.x was the first (experimental) ESM release.
Chores
- Add new build script to generate CommonJS modules w/
node:
prefix removed: 5ee202f, 228253c - Include
build
step in CI for size logging: 05dae70
Full Changelog: v1.0.0-next.27...v1.0.0-next.28