From 4dbfa64a4370accf83d30f47eab724e1c0f6a311 Mon Sep 17 00:00:00 2001 From: Ricardo M Date: Thu, 5 Oct 2023 21:55:03 +0200 Subject: [PATCH] fix(publishing): Set access:public for @kaoto-next/ui In order for lerna-lite be able to publish a package, we need to set the access to public. Relates to: https://github.com/KaotoIO/kaoto-next/issues/77 --- packages/ui/package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/packages/ui/package.json b/packages/ui/package.json index aa0694b0a..7072edc61 100644 --- a/packages/ui/package.json +++ b/packages/ui/package.json @@ -6,6 +6,9 @@ "repository": "https://github.com/KaotoIO/kaoto-next", "repositoryDirectory": "packages/ui", "author": "The Kaoto Team", + "publishConfig": { + "access": "public" + }, "license": "Apache License v2.0", "types": "./lib/esm/public-api.d.ts", "module": "./lib/esm/public-api.js",