From 36fd0a61dbb4d0b745fb896f70be130081644654 Mon Sep 17 00:00:00 2001 From: Brian Carlson Date: Wed, 23 Apr 2025 13:46:01 -0500 Subject: [PATCH] Only allow publish from master --- lerna.json | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/lerna.json b/lerna.json index eb366709..9589a0aa 100644 --- a/lerna.json +++ b/lerna.json @@ -1,12 +1,12 @@ { - "packages": [ - "packages/*" - ], + "packages": ["packages/*"], "npmClient": "yarn", "useWorkspaces": true, "version": "independent", - "ignoreChanges": [ - "**/*.md", - "**/test/**" - ] + "command": { + "version": { + "allowBranch": "master" + } + }, + "ignoreChanges": ["**/*.md", "**/test/**"] }