From 8e8142d7da148d8ef434c484582ec3f5823b9f54 Mon Sep 17 00:00:00 2001 From: Eric Satterwhite Date: Wed, 1 Apr 2026 23:32:23 -0500 Subject: [PATCH] fix(ci): make sure the release process publishes a pacakge the core package has npm publish disabled by default. This enables it so the npm publish happens during the release process. --- release.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/release.config.js b/release.config.js index c86af99..4d884b3 100644 --- a/release.config.js +++ b/release.config.js @@ -3,4 +3,5 @@ module.exports = { 'extends': '@codedependant/release-config-core' , 'branches': ['main'] +, 'npmPublish': true }