From 93b72f9e167d928d45314015cad674026946fbd5 Mon Sep 17 00:00:00 2001 From: NotNotARobot <164791169+NotNotARobot@users.noreply.github.com> Date: Fri, 3 Jan 2025 13:54:59 -0500 Subject: [PATCH] chore: add missing language fences to CONTRIBUTING.md --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index ff301dd17f292..4050835116b0e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -98,14 +98,14 @@ cargo test -p - Updating integration tests - ``` + ```bash turbo run build --filter=cli pnpm --filter turborepo-tests-integration test:interactive ``` You can pass a test name to run a single test, or a directory to run all tests in that directory. - ``` + ```bash pnpm --filter turborepo-tests-integration test:interactive tests/turbo-help.t ``` @@ -226,7 +226,7 @@ Once you've created your example (with prior approval, as discussed above), you To test out the experience of your example with `create-turbo`, run `create-turbo` with the `--example` flag pointed to a URL to your example's source code: -``` +```bash npx create-turbo@latest --example https://github.com/your-org/your-repo/tree/your-branch/... ```