Storybooks for commit d1c1e30a3c13799e87e72576d989bf3b6344c707

Date
9/23/2026, 10:01:10 PM UTC
Summary
chore(deps): upgrade commander to 13.1 and migrate CLI scripts
Description
## Because

- The FxA CLI scripts used old commander versions (2.18.0 in fxa-auth-server, 9.3.0 in fxa-profile-server).
- Commander 7 and later no longer stores options as properties on `program`. Reads such as `program.delay`, `program.batchsize`, `program.delimiter` and `program.emailPattern` silently fell back to their defaults.

## This pull request

- Upgrades `commander` to `^13.1.0` in fxa-auth-server and fxa-profile-server, and adds it to fxa-admin-server.
- Changes the CLI scripts to use the named `program` or `Command` import and to read options with `program.opts()`.
- Adds `.allowExcessArguments()` where a value-less `--limit` flag can leave a positional arg.
- Renames the action-handler parameter `cmdObj` to `options` in `google-events-cli.js`. In commander 13 the handler gets `(args..., options, command)`, so this value is already the options object.

## Issue that this pull request solves

Closes: https://mozilla-hub.atlassian.net/browse/FXA-9229