Skip to main content
Short alias for monorepo:run with the command list fixed to build. It runs the build 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 build [options]
This is equivalent to:
talos monorepo:run --commands=build

Examples

Build every package and module:
talos build
Scope the build to specific modules and packages:
talos build --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos build --logs
Force every task to re-run, ignoring the cache:
talos build --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, build takes no --commands option — the command list is fixed to build.
See the monorepo:run reference for the full details on execution order, caching, and output.