From a25e7a5cf6a899347262f4d892421013b8c1c92d Mon Sep 17 00:00:00 2001 From: Michael van Engelshoven Date: Mon, 6 Mar 2023 14:39:57 +0100 Subject: [PATCH] Fix access scope for publishing with changesets On the last release we received the error `Can't restrict access to unscoped packages.` After some research this may be caused by changesets because it is configured to publish with restricted access by default, wich was not changed correctly. --- .changeset/config.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/config.json b/.changeset/config.json index 8fbb288..d9d5734 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -4,7 +4,7 @@ "commit": false, "fixed": [], "linked": [], - "access": "restricted", + "access": "public", "baseBranch": "master", "updateInternalDependencies": "patch", "ignore": []