LinuxCommandLibrary

turbo

High-performance build system for JavaScript and TypeScript codebases.

TLDR

Log in using the default web browser with a Vercel account

$ turbo login
copy


Link the current directory to a Vercel organization and enable remote caching
$ turbo link
copy


Build the current project
$ turbo run build
copy


Run a task without concurrency
$ turbo run [task_name] --concurrency=[1]
copy


Run a task ignoring cached artifacts and forcibly re-execute all tasks
$ turbo run [task_name] --force
copy


Run a task in parallel across packages
$ turbo run [task_name] --parallel --no-cache
copy


Unlink the current directory from your Vercel organization and disable Remote Caching
$ turbo unlink
copy


Generate a Dot graph of a specific task execution (the output file format can be controlled with the filename)
$ turbo run [task_name] --graph=[path/to/file].[html|jpg|json|pdf|png|svg]
copy

Copied to clipboard