rtk-ai/rtk

feat(rewrite): support bare turbo commands

Open

#531 ouverte le 12 mars 2026

Voir sur GitHub
 (1 commentaire) (4 réactions) (0 assignés)Rust (2 914 forks)batch import
area:clieffort-smallenhancementgood first issueplatform:macospriority:low

Métriques du dépôt

Stars
 (48 085 stars)
Métriques de merge PR
 (Merge moyen 11j 1h) (45 PRs mergées en 30 j)

Description

Description

rtk rewrite matches npx turbo <cmd> but not bare turbo <cmd>. In monorepos using Turborepo, turbo is typically installed globally or via npx -g, so bare invocations are common.

Reproduction

# Matches:
rtk rewrite "npx turbo tsc"    # -> rtk npx turbo tsc ✓

# Doesn't match:
rtk rewrite "turbo tsc"        # exit 1 ✗
rtk rewrite "turbo lint"       # exit 1 ✗  
rtk rewrite "turbo run tsc"    # exit 1 ✗
rtk rewrite "turbo dev"        # exit 1 ✗

Impact

In my monorepo, ~69 turbo commands in the last 30 days went unmatched.

Suggested fix

Add turbo as a rewrite target alongside npx turbo, mapping to rtk npx turbo or a dedicated rtk turbo.

Environment

  • rtk 0.28.2
  • macOS Darwin 25.3.0

Guide contributeur