From a5cf68538d3eb786581f8db1f5bcad731721c56d Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Fri, 30 Jun 2023 05:27:18 -0400 Subject: [PATCH] fix: add override for releaserc to disable npm publishing --- src/index.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/index.ts b/src/index.ts index 7aa365f..4e86e77 100644 --- a/src/index.ts +++ b/src/index.ts @@ -30,6 +30,11 @@ export default async function (context: PresetContext): Promise { ], ], }, + release: { + plugins: { + "3": ["@semantic-release/npm", { publish: false }], + }, + }, }, }; }