Course lesson
Create Repository Specific Turborepo Pipelines
It's fairly straight forward to create repo specific pipelines with Turborepo. The script goes like this: {monorepo-name}/{repository}#{script-name}. For example, if we wanted to run the typecheck command in just the dashboard repo, it would look like this:...
- Duration
- 2 min
- Access
- Included
- Transcript
- Retained from source evidence
It's fairly straight forward to create repo specific pipelines with Turborepo. The script goes like this: {monorepo-name}/{repository}#{script-name}. For example, if we wanted to run the typecheck command in just the dashboard repo, it would look like this: @monorepo/dashboard#typecheck. Lastly, we will make sure that it dependsOn the utils#typecheck pipeline.