From 9ec3f743edfd0a5996a4c6eced35bbf95cf1604e Mon Sep 17 00:00:00 2001 From: Metehan-Altuntekin <86600423+Metehan-Altuntekin@users.noreply.github.com> Date: Wed, 10 Jan 2024 20:06:01 +0300 Subject: [PATCH] docs: make definition clearer in workspace guide (#4926) --- docs/guide/workspace.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/workspace.md b/docs/guide/workspace.md index a99c312eccc1..131c2013e8e2 100644 --- a/docs/guide/workspace.md +++ b/docs/guide/workspace.md @@ -10,7 +10,7 @@ Vitest provides built-in support for monorepos through a workspace configuration A workspace should have a `vitest.workspace` or `vitest.projects` file in its root (in the same folder as your config file if you have one). Vitest supports `ts`/`js`/`json` extensions for this file. -Workspace configuration file should have a default export with a list of files or glob patterns referencing your projects. For example, if you have a folder with your projects named `packages`, you can define a workspace with this config file: +Workspace configuration file should have a default export with a list of files or glob patterns referencing your projects. For example, if you have a folder named `packages` that contains your projects, you can define a workspace with this config file: :::code-group ```ts [vitest.workspace.ts]