Change8

node-fetch-server@0.11.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. To use in CommonJS projects, you must switch to dynamic import().

Migration Steps

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