From 3c8386d168aba64becd80c518ff7f16b817ea24f Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Fri, 17 Jan 2025 15:46:39 -0500 Subject: [PATCH] docs: update docs to use correct changeset dir --- docs/repo-docs/guides/publishing-libraries.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/repo-docs/guides/publishing-libraries.mdx b/docs/repo-docs/guides/publishing-libraries.mdx index 518c013795ec1..3a2fb98166c7d 100644 --- a/docs/repo-docs/guides/publishing-libraries.mdx +++ b/docs/repo-docs/guides/publishing-libraries.mdx @@ -158,7 +158,7 @@ Linking your publishing flow into Turborepo can make organizing your deploy a lo Our recommendation is to configure Changesets to automatically commit `changeset version`'s changes -```json title="./changeset/config.json" +```json title="./.changeset/config.json" { // … "commit": true, @@ -180,7 +180,7 @@ and add a `publish-packages` script into your root `package.json`: If your packages are public, set Changeset's `access` to `public`: -```json title="./changeset/config.json" +```json title="./.changeset/config.json" { // … "access": "public",