You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(shared-media-utils): use dynamic imports for ESM-only imagemin packages
imagemin-mozjpeg, imagemin-webp, imagemin-pngquant, and imagemin v8+ are
ESM-only packages that cannot be require()'d from CJS output. The
shared-media-utils package builds to CJS format, causing ERR_REQUIRE_ESM
at runtime.
Replace static imports with dynamic import() calls which work in both
CJS and ESM contexts.
Closes#1700
0 commit comments