headers@0.14.0
Breaking Changes📦 remixView on GitHub →
⚠ 1 breaking
Summary
This release transitions the package to an ESM-only format, removing support for CommonJS builds.
⚠️ Breaking Changes
- Removed CommonJS build. The package is now ESM-only. Projects using CommonJS must now use dynamic import() to load this package.
Migration Steps
- Convert your project to ESM by adding "type": "module" to package.json, or replace static require() calls with dynamic import() statements.