From e27bf8c35c477e921ed638ffe233d97a767185d8 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Thu, 18 Feb 2021 11:50:54 +0000 Subject: [PATCH] chore: fix rc publishing Lerna doesn't work with npm automation tokens out of the box, need to disable auth verification for the time being. Refs: https://github.com/lerna/lerna/issues/2788 --- .gitignore | 1 + lerna.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f8ed09bc..f46aecab 100644 --- a/.gitignore +++ b/.gitignore @@ -4,6 +4,7 @@ yarn.lock **/*.log test/repo-tests* **/bundle.js +package-lock.json # Logs logs diff --git a/lerna.json b/lerna.json index ae4bcb33..bf001c38 100644 --- a/lerna.json +++ b/lerna.json @@ -14,7 +14,8 @@ "publish": { "message": "chore: publish", "conventionalCommits": true, - "createRelease": "github" + "createRelease": "github", + "verifyAccess": false } } }