From 2a6fede5336409768dfe8481e276d13eedd68c86 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Tue, 10 Jan 2023 08:50:52 +0000 Subject: [PATCH] fix: update lerna config for rc publishing (#4283) --- lerna.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/lerna.json b/lerna.json index 89c6b1c71f..6f50e5584d 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,18 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", "useWorkspaces": true, - "version": "0.0.1-87d6a2c5d.0" + "version": "0.0.1-87d6a2c5d.0", + "command": { + "publish": { + "message": "chore: publish", + "createRelease": "github", + "conventionalCommits": true, + "verifyAccess": false + }, + "version": { + "allowBranch": ["master", "release/*"], + "forcePublish": true, + "ignore-changes": [".github/**", "docs/**"] + } + } }