From 5115d5b5cca597729b72fa73102bd88b6ca08205 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Ribeiro?= Date: Tue, 31 Oct 2023 16:01:37 -0300 Subject: [PATCH] fix: add publishConfig to package.json, prefix to version name --- package.json | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 518eac6..bbf01e1 100644 --- a/package.json +++ b/package.json @@ -69,15 +69,20 @@ }, "release-it": { "git": { - "commitMessage": "chore(release): v${version}" + "commitMessage": "chore(release): v${version}", + "tagName": "v${version}" }, "github": { "release": true }, "npm": { - "publish": false + "publish": true, + "publishArgs": "--registry=https://npm.pkg.github.com" } }, + "publishConfig": { + "registry": "https://npm.pkg.github.com" + }, "engines": { "node": ">=14.0.0" },