From 703ee66f2d9ce4eba1dc470670762adae80c3201 Mon Sep 17 00:00:00 2001 From: Uri Bar <106860404+staycoolcall911@users.noreply.github.com> Date: Thu, 7 Sep 2023 23:46:08 +0300 Subject: [PATCH] chore(docs): disable turbo cache with `--force` (#4112) I was searching for that and thought that was helpful to have in the contrib docs. ## Checklist - [ ] Title matches [Winglang's style guide](https://www.winglang.io/contributing/start-here/pull_requests#how-are-pull-request-titles-formatted) - [ ] Description explains motivation and solution - [ ] Tests added (always) - [ ] Docs updated (only required for features) - [ ] Added `pr/e2e-full` label if this feature requires end-to-end testing *By submitting this pull request, I confirm that my contribution is made under the terms of the [Wing Cloud Contribution License](https://github.com/winglang/wing/blob/main/CONTRIBUTION_LICENSE.md)*. --- docs/contributing/01-start-here/05-development.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/contributing/01-start-here/05-development.md b/docs/contributing/01-start-here/05-development.md index 9f24c9d5550..6ba8d4bbcbb 100644 --- a/docs/contributing/01-start-here/05-development.md +++ b/docs/contributing/01-start-here/05-development.md @@ -47,6 +47,7 @@ pnpm turbo --filter= -- - `pnpm` can be omitted if [Turbo] is installed globally - `--filter=` may be used to filter to a specific project (and it's dependencies) - Running `turbo ` inside of a project directory will automatically filter to that project +- We use [Turbo caching](https://turbo.build/repo/docs/core-concepts/caching) to speed up builds. If you want to force a rebuild, use `--force`. :::