From 48264c263ac7cd2c3d183540fa04637ffd52d207 Mon Sep 17 00:00:00 2001 From: JJ Kasper Date: Wed, 21 Sep 2022 16:32:49 -0700 Subject: [PATCH] Update publish to scope as public for initializing (#40778) New scoped packages need to be initialized as public so this adds the `publishConfig` for this. Fixes: https://github.com/vercel/next.js/actions/runs/3101494786/jobs/5023375720 --- packages/font/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/font/package.json b/packages/font/package.json index 51a16d74ab410..51739845395ab 100644 --- a/packages/font/package.json +++ b/packages/font/package.json @@ -15,5 +15,8 @@ "prepublishOnly": "cd ../../ && turbo run build", "dev": "tsc -d -w -p tsconfig.json", "typescript": "tsec --noEmit -p tsconfig.json" + }, + "publishConfig": { + "access": "public" } }