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
feat(react-email): filter compatibility warnings by email client
Adds --clients to email dev and reads COMPATIBILITY_EMAIL_CLIENTS from the
environment so teams that only target a subset of clients can quiet warnings
for the rest. The CLI flag wins over the env var; an empty or fully-invalid
list falls back to the defaults so warnings can't be silently switched off.
The Compatibility tab shows the active client list above the results so the
filter is never invisible.
Builds on #2797 by @ReemX with the cubic-flagged regressions fixed: the
port-retry path now preserves the flag, undefined no longer clobbers a
user-set env var, and invalid env values fall back to the defaults instead
of suppressing all checks.
Co-authored-by: ReemX <reemasaf44@gmail.com>
Co-authored-by: Gabriel Miranda <gabrielmfern@outlook.com>
add a `--clients` option to `email dev` and a `COMPATIBILITY_EMAIL_CLIENTS` environment variable to narrow which email clients trigger compatibility warnings. By default the preview still warns for `gmail`, `apple-mail`, `outlook`, and `yahoo`. Teams that only target one or two clients can now skip the noise: `email dev --clients outlook,apple-mail`. The CLI flag wins over the env var; an empty or fully-invalid list falls back to the defaults so warnings can't be silently switched off. Builds on #2797 by @ReemX.
0 commit comments