From 7277c2af7c27743f9e8164eb3de0f3d3c6292013 Mon Sep 17 00:00:00 2001 From: Alessandro Senese Date: Wed, 6 Dec 2023 09:23:04 +0000 Subject: [PATCH] exclude internal package from changeset --- .changeset/config.json | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 1a851925..6311fabe 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -1,11 +1,12 @@ { - "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", - "changelog": [ - "@svitejs/changesets-changelog-github-compact", - { - "repo": "FormidableLabs/react-native-ama" - } - ], - "access": "public", - "baseBranch": "main" -} \ No newline at end of file + "$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json", + "changelog": [ + "@svitejs/changesets-changelog-github-compact", + { + "repo": "FormidableLabs/react-native-ama" + } + ], + "access": "public", + "baseBranch": "main", + "ignore": ["@react-native-ama/internal"] +}