From 48ce8122a87c27e923ef21c92304d7a89ac4d217 Mon Sep 17 00:00:00 2001 From: Ivan Koryakovtsev Date: Fri, 18 Aug 2023 12:40:23 +0100 Subject: [PATCH] chore: add 0.15.x in allowBranch for lerna --- lerna.json | 26 ++++++++++++-------------- 1 file changed, 12 insertions(+), 14 deletions(-) diff --git a/lerna.json b/lerna.json index cbd6818..b14ea71 100644 --- a/lerna.json +++ b/lerna.json @@ -1,16 +1,14 @@ { - "packages": [ - "packages/*" - ], - "npmClient": "yarn", - "useWorkspaces": true, - "version": "0.14.2", - "command": { - "publish": { - "allowBranch": "master", - "registry": "https://registry.npmjs.org/", - "message": "chore: bump versions after release", - "yes": true - } - } + "packages": ["packages/*"], + "npmClient": "yarn", + "useWorkspaces": true, + "version": "0.14.2", + "command": { + "publish": { + "allowBranch": ["master", "0.15.x"], + "registry": "https://registry.npmjs.org/", + "message": "chore: bump versions after release", + "yes": true + } + } }