mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 10:02:08 +02:00

* pages*: improve wording and list placeholders * clamav: fix verb tenses Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * buzzphrase: use k instead of n for number of phrases Co-authored-by: Juri Dispan <juri.dispan@posteo.net> * adguardhome: use non-default instead of different * adguardhome: use configuration instead of config Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * goimports, module: fix list placeholders Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> * pages*: leave stems and extensions in the same placeholders * pages*: fix list placeholders * pages*: fix list placeholders * pages*: apply suggestions from code review Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * qpdf: enclose n with backticks Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> --------- Co-authored-by: Juri Dispan <juri.dispan@posteo.net> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com>
989 B
989 B
turbo
High-performance build system for JavaScript and TypeScript codebases. See also:
nx
. More information: https://turborepo.org/docs/reference/command-line-reference.
- Log in using the default web browser with a Vercel account:
turbo login
- Link the current directory to a Vercel organization and enable remote caching:
turbo link
- Build the current project:
turbo run build
- Run a task without concurrency:
turbo run {{task_name}} --concurrency={{1}}
- Run a task ignoring cached artifacts and forcibly re-execute all tasks:
turbo run {{task_name}} --force
- Run a task in parallel across packages:
turbo run {{task_name}} --parallel --no-cache
- Unlink the current directory from your Vercel organization and disable Remote Caching:
turbo unlink
- 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}}