From 2a841888294a52180a54468494fbc9654e02c1dc Mon Sep 17 00:00:00 2001 From: Andrew Luca Date: Wed, 13 Oct 2021 12:07:33 +0300 Subject: [PATCH] chore: add repository directory for all packages.json MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit > If the package.json for your package is not in the root directory (for example if it is part of a monorepo), you can specify the directory in which it lives: > ```json > "repository": { > "type" : "git", > "url" : "https://github.com/facebook/react.git", > "directory": "packages/react-dom" > } > ``` > — https://docs.npmjs.com/cli/v6/configuring-npm/package-json#repository I use a lot https://njt.vercel.app/ to jump to different packages information, and with this PR we can know exactly what package in what folder lives Made the changes with a script to make it easier 🙂 https://gist.github.com/iamandrewluca/5cc85b56a595056f0099d04ed6dd8a79 --- @alias/commitlint-config-angular/package.json | 5 +++-- @alias/commitlint-config-lerna-scopes/package.json | 5 +++-- @alias/commitlint-config-patternplate/package.json | 5 +++-- @alias/commitlint/package.json | 5 +++-- @commitlint/cli/package.json | 5 +++-- @commitlint/config-angular-type-enum/package.json | 5 +++-- @commitlint/config-angular/package.json | 5 +++-- @commitlint/config-conventional/package.json | 5 +++-- @commitlint/config-lerna-scopes/package.json | 5 +++-- @commitlint/config-patternplate/package.json | 5 +++-- @commitlint/core/package.json | 5 +++-- @commitlint/cz-commitlint/package.json | 5 +++-- @commitlint/ensure/package.json | 5 +++-- @commitlint/execute-rule/package.json | 5 +++-- @commitlint/format/package.json | 5 +++-- @commitlint/is-ignored/package.json | 5 +++-- @commitlint/lint/package.json | 5 +++-- @commitlint/load/package.json | 5 +++-- @commitlint/message/package.json | 5 +++-- @commitlint/parse/package.json | 5 +++-- @commitlint/prompt-cli/package.json | 5 +++-- @commitlint/prompt/package.json | 5 +++-- @commitlint/read/package.json | 5 +++-- @commitlint/resolve-extends/package.json | 5 +++-- @commitlint/rules/package.json | 5 +++-- @commitlint/to-lines/package.json | 5 +++-- @commitlint/top-level/package.json | 5 +++-- @commitlint/travis-cli/package.json | 5 +++-- @commitlint/types/package.json | 5 +++-- @packages/test-environment/package.json | 5 +++-- @packages/test/package.json | 5 +++-- @packages/utils/package.json | 5 +++-- 32 files changed, 96 insertions(+), 64 deletions(-) diff --git a/@alias/commitlint-config-angular/package.json b/@alias/commitlint-config-angular/package.json index bc20cbafab..bbfe72c2c8 100644 --- a/@alias/commitlint-config-angular/package.json +++ b/@alias/commitlint-config-angular/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@alias/commitlint-config-angular" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@alias/commitlint-config-lerna-scopes/package.json b/@alias/commitlint-config-lerna-scopes/package.json index aaa6110d96..60ff993794 100644 --- a/@alias/commitlint-config-lerna-scopes/package.json +++ b/@alias/commitlint-config-lerna-scopes/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@alias/commitlint-config-lerna-scopes" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@alias/commitlint-config-patternplate/package.json b/@alias/commitlint-config-patternplate/package.json index 455312b82b..5907ee5d34 100644 --- a/@alias/commitlint-config-patternplate/package.json +++ b/@alias/commitlint-config-patternplate/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@alias/commitlint-config-patternplate" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@alias/commitlint/package.json b/@alias/commitlint/package.json index d57f032c03..8e746c7e00 100644 --- a/@alias/commitlint/package.json +++ b/@alias/commitlint/package.json @@ -17,12 +17,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@alias/commitlint" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/cli/package.json b/@commitlint/cli/package.json index 3f3bd10df1..387d062d50 100644 --- a/@commitlint/cli/package.json +++ b/@commitlint/cli/package.json @@ -19,12 +19,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/cli" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/config-angular-type-enum/package.json b/@commitlint/config-angular-type-enum/package.json index a001fc6e56..966f95b63b 100644 --- a/@commitlint/config-angular-type-enum/package.json +++ b/@commitlint/config-angular-type-enum/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/config-angular-type-enum" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/config-angular/package.json b/@commitlint/config-angular/package.json index 9c023b99b9..e498852d6f 100644 --- a/@commitlint/config-angular/package.json +++ b/@commitlint/config-angular/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/config-angular" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/config-conventional/package.json b/@commitlint/config-conventional/package.json index ae651df8df..844cc0ffd9 100644 --- a/@commitlint/config-conventional/package.json +++ b/@commitlint/config-conventional/package.json @@ -14,7 +14,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/config-conventional" }, "keywords": [ "conventional-changelog", @@ -27,7 +28,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/config-lerna-scopes/package.json b/@commitlint/config-lerna-scopes/package.json index 78624cb716..b34d49ed75 100644 --- a/@commitlint/config-lerna-scopes/package.json +++ b/@commitlint/config-lerna-scopes/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/config-lerna-scopes" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "peerDependencies": { "lerna": "^3.0.0 || ^4.0.0" }, diff --git a/@commitlint/config-patternplate/package.json b/@commitlint/config-patternplate/package.json index 01a50ee8c1..111d3c1049 100644 --- a/@commitlint/config-patternplate/package.json +++ b/@commitlint/config-patternplate/package.json @@ -11,7 +11,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/config-patternplate" }, "keywords": [ "conventional-changelog", @@ -24,7 +25,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/core/package.json b/@commitlint/core/package.json index 68d04d0a09..65ff8e0807 100644 --- a/@commitlint/core/package.json +++ b/@commitlint/core/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/core" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/cz-commitlint/package.json b/@commitlint/cz-commitlint/package.json index 420cfb9353..fca37a0664 100644 --- a/@commitlint/cz-commitlint/package.json +++ b/@commitlint/cz-commitlint/package.json @@ -16,13 +16,14 @@ "scripts": { "commit": "git-cz" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/cz-commitlint" }, "engineStrict": true, "engines": { diff --git a/@commitlint/ensure/package.json b/@commitlint/ensure/package.json index d4a76bfc3d..c88be7de15 100644 --- a/@commitlint/ensure/package.json +++ b/@commitlint/ensure/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/ensure" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/execute-rule/package.json b/@commitlint/execute-rule/package.json index 25c94f625d..8a3ddb8a01 100644 --- a/@commitlint/execute-rule/package.json +++ b/@commitlint/execute-rule/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/execute-rule" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/format/package.json b/@commitlint/format/package.json index 8b68fd5677..e1827543e7 100644 --- a/@commitlint/format/package.json +++ b/@commitlint/format/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/format" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/is-ignored/package.json b/@commitlint/is-ignored/package.json index 1650b8e24e..284d4b3a44 100644 --- a/@commitlint/is-ignored/package.json +++ b/@commitlint/is-ignored/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/is-ignored" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/lint/package.json b/@commitlint/lint/package.json index a03bed5260..c2be7c0869 100644 --- a/@commitlint/lint/package.json +++ b/@commitlint/lint/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/lint" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/load/package.json b/@commitlint/load/package.json index 2d3e7be8f0..f63523901a 100644 --- a/@commitlint/load/package.json +++ b/@commitlint/load/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/load" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/message/package.json b/@commitlint/message/package.json index 6a28078355..41e889c835 100644 --- a/@commitlint/message/package.json +++ b/@commitlint/message/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/message" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/parse/package.json b/@commitlint/parse/package.json index c727071c1a..d551fb286a 100644 --- a/@commitlint/parse/package.json +++ b/@commitlint/parse/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/parse" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/prompt-cli/package.json b/@commitlint/prompt-cli/package.json index ef8715bc5d..72e0d3cca9 100644 --- a/@commitlint/prompt-cli/package.json +++ b/@commitlint/prompt-cli/package.json @@ -15,7 +15,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/prompt-cli" }, "keywords": [ "commitlint", @@ -26,7 +27,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/prompt/package.json b/@commitlint/prompt/package.json index 5352038eee..809bb49d78 100644 --- a/@commitlint/prompt/package.json +++ b/@commitlint/prompt/package.json @@ -17,7 +17,8 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/prompt" }, "keywords": [ "conventional-changelog", @@ -31,7 +32,7 @@ "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "engines": { "node": ">=v12" }, diff --git a/@commitlint/read/package.json b/@commitlint/read/package.json index f01450da47..24a5df8b61 100644 --- a/@commitlint/read/package.json +++ b/@commitlint/read/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/read" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/resolve-extends/package.json b/@commitlint/resolve-extends/package.json index 6040d75cbb..abce27867d 100644 --- a/@commitlint/resolve-extends/package.json +++ b/@commitlint/resolve-extends/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/resolve-extends" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/rules/package.json b/@commitlint/rules/package.json index 6561d46243..4f6220eb8a 100644 --- a/@commitlint/rules/package.json +++ b/@commitlint/rules/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/rules" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/to-lines/package.json b/@commitlint/to-lines/package.json index 03912b72b7..1fcccc1f10 100644 --- a/@commitlint/to-lines/package.json +++ b/@commitlint/to-lines/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/to-lines" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/top-level/package.json b/@commitlint/top-level/package.json index a30321cff4..eb2b9c50b1 100644 --- a/@commitlint/top-level/package.json +++ b/@commitlint/top-level/package.json @@ -16,12 +16,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/top-level" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/travis-cli/package.json b/@commitlint/travis-cli/package.json index 028507e48c..d1927d8df8 100644 --- a/@commitlint/travis-cli/package.json +++ b/@commitlint/travis-cli/package.json @@ -18,12 +18,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/travis-cli" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@commitlint/types/package.json b/@commitlint/types/package.json index 4db79abd2f..bca731494c 100644 --- a/@commitlint/types/package.json +++ b/@commitlint/types/package.json @@ -15,12 +15,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@commitlint/types" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "author": { "name": "Mario Nebl", "email": "hello@herebecode.com" diff --git a/@packages/test-environment/package.json b/@packages/test-environment/package.json index 47281bb256..62a6274a76 100644 --- a/@packages/test-environment/package.json +++ b/@packages/test-environment/package.json @@ -13,12 +13,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@packages/test-environment" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@packages/test/package.json b/@packages/test/package.json index fa3760fb55..264df7d151 100644 --- a/@packages/test/package.json +++ b/@packages/test/package.json @@ -13,12 +13,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@packages/test" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint", diff --git a/@packages/utils/package.json b/@packages/utils/package.json index cdf3c022cf..2e0dfeba80 100644 --- a/@packages/utils/package.json +++ b/@packages/utils/package.json @@ -20,12 +20,13 @@ }, "repository": { "type": "git", - "url": "https://github.com/conventional-changelog/commitlint.git" + "url": "https://github.com/conventional-changelog/commitlint.git", + "directory": "@packages/utils" }, "bugs": { "url": "https://github.com/conventional-changelog/commitlint/issues" }, - "homepage": "https://github.com/conventional-changelog/commitlint#readme", + "homepage": "https://commitlint.js.org/", "keywords": [ "conventional-changelog", "commitlint",