From a0b7c783cc45d4b6165ddcabbb97155e8b0196eb Mon Sep 17 00:00:00 2001 From: Amar Kisoensingh Date: Sun, 7 Jul 2024 03:38:51 +0100 Subject: [PATCH] fix(docs): fix pnpm workspace filename extension (#8679) ### Description The extension for a pnpm workspace manifest file should be `yaml`, not `yml`. Using `yml` provides an error: `The workspace manifest file should be named "pnpm-workspace.yaml"` pnpm documentation for workspace manifests: https://pnpm.io/pnpm-workspace_yaml --- .../crafting-your-repository/structuring-a-repository.mdx | 2 +- docs/repo-docs/guides/multi-language.mdx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx b/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx index 187b258ae3e9f..6d00d5b768ff4 100644 --- a/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx +++ b/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx @@ -141,7 +141,7 @@ First, your package manager needs to describe the locations of your packages. We yarn workspace documentation - ```json title="pnpm-workspace.yml" + ```json title="pnpm-workspace.yaml" packages: - "apps/*" - "packages/*" diff --git a/docs/repo-docs/guides/multi-language.mdx b/docs/repo-docs/guides/multi-language.mdx index aa3bd8bc1970a..66bc43f60df3e 100644 --- a/docs/repo-docs/guides/multi-language.mdx +++ b/docs/repo-docs/guides/multi-language.mdx @@ -38,7 +38,7 @@ As an example, you may have a Rust project in the `./cli` directory in your repo yarn workspace documentation - ```json title="pnpm-workspace.yml" + ```json title="pnpm-workspace.yaml" packages: - "apps/*" - "packages/*"