Skip to content

Commit ddd39b8

Browse files
committed
fix(doctor): point repository metadata at the monorepo
The package moved into packages/doctor but its manifest still named the archived nativescript-doctor repo. npm rejects a --provenance publish when repository.url does not resolve to the repo the workflow ran in: 422 Unprocessable Entity - Error verifying sigstore provenance bundle: package.json: "repository.url" is "git+https://github.com/NativeScript/nativescript-doctor.git", expected to match "https://github.com/NativeScript/nativescript-cli" repository.directory tells the registry which subtree the package is built from. bugs and homepage followed the same move. CHANGELOG.md keeps its nativescript-doctor links - those commits and issues only exist there.
1 parent f24cc5d commit ddd39b8

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

packages/doctor/package.json

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@
2424
},
2525
"repository": {
2626
"type": "git",
27-
"url": "git+https://github.com/NativeScript/nativescript-doctor.git"
27+
"url": "git+https://github.com/NativeScript/nativescript-cli.git",
28+
"directory": "packages/doctor"
2829
},
2930
"keywords": [
3031
"NativeScript",
@@ -40,9 +41,9 @@
4041
],
4142
"license": "Apache-2.0",
4243
"bugs": {
43-
"url": "https://github.com/NativeScript/nativescript-doctor/issues"
44+
"url": "https://github.com/NativeScript/nativescript-cli/issues"
4445
},
45-
"homepage": "https://github.com/NativeScript/nativescript-doctor#readme",
46+
"homepage": "https://github.com/NativeScript/nativescript-cli/tree/main/packages/doctor#readme",
4647
"devDependencies": {
4748
"@types/chai": "5.2.2",
4849
"@types/lodash": "4.17.21",

0 commit comments

Comments
 (0)