From d43a73282fba5153a5ca8124a15c72479bd63124 Mon Sep 17 00:00:00 2001 From: Joshua Leivers Date: Fri, 29 Sep 2023 15:31:35 +0100 Subject: [PATCH] build: make package private and update repository The package needs to be set to private, as we aren't members of `@semantic-release`, and so can't publish this to NPM. The licence and repository URL were also out of date, and have now been updated. --- package-lock.json | 2 +- package.json | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/package-lock.json b/package-lock.json index 12a2585..7d74c01 100644 --- a/package-lock.json +++ b/package-lock.json @@ -7,7 +7,7 @@ "": { "name": "@semantic-release/config-gitlab-npm", "version": "0.0.0", - "license": "ISC", + "license": "MIT", "devDependencies": { "@commitlint/cli": "^17", "@commitlint/config-conventional": "^17", diff --git a/package.json b/package.json index b797825..4426baa 100644 --- a/package.json +++ b/package.json @@ -17,8 +17,9 @@ }, "repository": { "type": "git", - "url": "git@gitlab.gpu.arm.com:semantic-release/config-gitlab-npm.git" + "url": "git@gitlab.arm.com:semantic-release/config-gitlab-npm.git" }, + "private": true, "keywords": [ "node", "nodejs", @@ -27,7 +28,7 @@ "config" ], "author": "", - "license": "ISC", + "license": "MIT", "peerDependencies": { "semantic-release": ">=19", "@semantic-release/commit-analyzer": ">=9", -- GitLab