From 898b9039dac07341b42f69df3bc91c47c45c8df8 Mon Sep 17 00:00:00 2001 From: Janne Savolainen Date: Thu, 23 Feb 2023 13:41:19 +0200 Subject: [PATCH] Add publish configuration to packages that are public (#7221) Signed-off-by: Janne Savolainen --- packages/infrastructure/jest/package.json | 4 ++++ packages/infrastructure/typescript/package.json | 4 ++++ packages/infrastructure/webpack/package.json | 4 ++++ packages/technical-features/application/package.json | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/packages/infrastructure/jest/package.json b/packages/infrastructure/jest/package.json index b6e00d1369..6f5ff7c642 100644 --- a/packages/infrastructure/jest/package.json +++ b/packages/infrastructure/jest/package.json @@ -4,6 +4,10 @@ "version": "0.0.1", "description": "Jest configuration and scripts for Lens packages.", "type": "commonjs", + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, "repository": { "type": "git", "url": "git+https://github.com/lensapp/lens.git" diff --git a/packages/infrastructure/typescript/package.json b/packages/infrastructure/typescript/package.json index 918e996042..3469151044 100644 --- a/packages/infrastructure/typescript/package.json +++ b/packages/infrastructure/typescript/package.json @@ -4,6 +4,10 @@ "version": "0.0.1", "description": "Typescript configuration for Lens packages.", "type": "commonjs", + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, "repository": { "type": "git", "url": "git+https://github.com/lensapp/lens.git" diff --git a/packages/infrastructure/webpack/package.json b/packages/infrastructure/webpack/package.json index 2539a99bb8..e79c257f26 100644 --- a/packages/infrastructure/webpack/package.json +++ b/packages/infrastructure/webpack/package.json @@ -4,6 +4,10 @@ "version": "0.0.1", "description": "Webpack configurations and scripts for Lens packages.", "type": "commonjs", + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, "repository": { "type": "git", "url": "git+https://github.com/lensapp/lens.git" diff --git a/packages/technical-features/application/package.json b/packages/technical-features/application/package.json index 91f1a6be34..a78de4da0e 100644 --- a/packages/technical-features/application/package.json +++ b/packages/technical-features/application/package.json @@ -7,6 +7,10 @@ "files": [ "dist" ], + "publishConfig": { + "access": "public", + "registry": "https://registry.npmjs.org/" + }, "repository": { "type": "git", "url": "git+https://github.com/lensapp/monorepo.git"