Skip to main content
Short alias for monorepo:run with the command list fixed to fmt. It runs the fmt script across every package and module of your workspace, in dependency order, with a content-addressed task cache. Every other option is forwarded untouched.

Usage

talos fmt [options]
This is equivalent to:
talos monorepo:run --commands=fmt

Examples

Format every package and module:
talos fmt
Scope formatting to specific modules and packages:
talos fmt --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos fmt --logs
Force every task to re-run, ignoring the cache:
talos fmt --no-cache

Options

OptionDescriptionDefault
--packagesComma-separated package names to include (under packages/).All packages and modules
--modulesComma-separated module names to include (under modules/).All packages and modules
--logsStream plain log lines instead of the interactive view.false
--no-cacheSkip reading and writing the task cache.false
Unlike monorepo:run, fmt takes no --commands option — the command list is fixed to fmt.
See the monorepo:run reference for the full details on execution order, caching, and output.