Skip to main content
Short alias for monorepo:run. It forwards every option untouched, so talos run --commands=build,lint behaves exactly like talos monorepo:run --commands=build,lint. Use it to run one or more package.json scripts across the packages and modules of your workspace, in dependency order, with a content-addressed task cache.

Usage

talos run --commands=<command,...> [options]

Examples

Build and lint every package and module:
talos run --commands=build,lint
Run only specific modules and packages:
talos run --commands=build,lint --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos run --commands=test --logs
Force every task to re-run, ignoring the cache:
talos run --commands=build --no-cache

Options

OptionDescriptionDefault
--commandsComma-separated script names to run, in order. Required.
--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
See the monorepo:run reference for the full details on execution order, caching, and output.