From caa32914f9cf9805f3f95881e90e17a35a3aa29b Mon Sep 17 00:00:00 2001 From: Joel Dodge Date: Thu, 1 Jul 2021 16:20:26 +0000 Subject: [PATCH] chore: scoped packages need public access (#726) https://docs.npmjs.com/cli/v7/using-npm/config#access --- packages/api-explorer/package.json | 3 +++ packages/code-editor/package.json | 3 +++ packages/run-it/package.json | 3 +++ 3 files changed, 9 insertions(+) diff --git a/packages/api-explorer/package.json b/packages/api-explorer/package.json index 5b74924cb..5e7318374 100644 --- a/packages/api-explorer/package.json +++ b/packages/api-explorer/package.json @@ -9,6 +9,9 @@ "license": "MIT", "author": "Looker", "private": false, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/looker-open-source/sdk-codegen.git", diff --git a/packages/code-editor/package.json b/packages/code-editor/package.json index 2a3c43713..ad1795fe6 100644 --- a/packages/code-editor/package.json +++ b/packages/code-editor/package.json @@ -12,6 +12,9 @@ "author": "Looker", "license": "MIT", "private": false, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/looker-open-source/sdk-codegen.git", diff --git a/packages/run-it/package.json b/packages/run-it/package.json index 1b8ec1496..8a768d1a2 100644 --- a/packages/run-it/package.json +++ b/packages/run-it/package.json @@ -12,6 +12,9 @@ "author": "Looker", "license": "MIT", "private": false, + "publishConfig": { + "access": "public" + }, "repository": { "type": "git", "url": "git+https://github.com/looker-open-source/sdk-codegen.git",