Change8

lazy-file@3.6.0

Breaking Changes
📦 remix
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

  1. Convert your project to ESM by adding "type": "module" to package.json, or replace require() calls with dynamic import() statements.