From b47cfc1df5d9ee955ac14124c05fa11ca71d3487 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Fri, 9 Aug 2024 12:34:34 +0100 Subject: [PATCH] fix: run release in each package The latest version of aegir ships with semantic-release-monorepo which should be run in each package, not the root. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ea189d92..092d6c63 100644 --- a/package.json +++ b/package.json @@ -113,7 +113,7 @@ "lint": "aegir run lint", "dep-check": "aegir run dep-check", "release": "run-s build docs:no-publish npm:release docs", - "npm:release": "aegir release", + "npm:release": "aegir run release", "docs": "aegir docs", "docs:no-publish": "aegir docs --publish false" },