From 5897794ea839e9f94bd16cdd113cf3b067067194 Mon Sep 17 00:00:00 2001 From: Mason Tejera <17346018+mltejera@users.noreply.github.com> Date: Fri, 17 May 2024 10:00:30 -0700 Subject: [PATCH 1/2] add type check --- docs/react-v9/contributing/command-cheat-sheet.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/react-v9/contributing/command-cheat-sheet.md b/docs/react-v9/contributing/command-cheat-sheet.md index 03ca9c13518c0..a84266f30efb8 100644 --- a/docs/react-v9/contributing/command-cheat-sheet.md +++ b/docs/react-v9/contributing/command-cheat-sheet.md @@ -13,6 +13,7 @@ yarn update-snapshots # updates snapshot tests yarn run dedupe # dedupes dependencies - necessary to run after any kind of package bump/changes yarn nx run :generate-api # updates API files yarn nx run : # runs tasks within a package. [More help here](https://nx.dev/features/run-tasks#running-tasks) +yarn workspace @fluentui/ type-check # quickly runs type checks and associated linting yarn lage build --to react # build v8 so intellisense works. ``` From ceaea815d6e0288008edfac603afb78d84439bd2 Mon Sep 17 00:00:00 2001 From: Mason Tejera <17346018+mltejera@users.noreply.github.com> Date: Fri, 17 May 2024 11:12:10 -0700 Subject: [PATCH 2/2] Update docs/react-v9/contributing/command-cheat-sheet.md Co-authored-by: Esteban Munoz Facusse --- docs/react-v9/contributing/command-cheat-sheet.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/react-v9/contributing/command-cheat-sheet.md b/docs/react-v9/contributing/command-cheat-sheet.md index a84266f30efb8..08d71eb327245 100644 --- a/docs/react-v9/contributing/command-cheat-sheet.md +++ b/docs/react-v9/contributing/command-cheat-sheet.md @@ -13,7 +13,7 @@ yarn update-snapshots # updates snapshot tests yarn run dedupe # dedupes dependencies - necessary to run after any kind of package bump/changes yarn nx run :generate-api # updates API files yarn nx run : # runs tasks within a package. [More help here](https://nx.dev/features/run-tasks#running-tasks) -yarn workspace @fluentui/ type-check # quickly runs type checks and associated linting +yarn nx run @fluentui/:type-check # quickly runs type checks and associated linting yarn lage build --to react # build v8 so intellisense works. ```