Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/add-repository-field.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@deessejs/errors": patch
---

Add the missing `repository` field to `packages/errors/package.json`. Trusted publishing with provenance requires `package.json:repository.url` to match the GitHub repo URL from the OIDC token — without it, npm rejects the publish with `E422: Error verifying sigstore provenance bundle: "repository.url" is ""`.
4 changes: 4 additions & 0 deletions packages/errors/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
"version": "1.1.1",
"description": "TypeScript error handling library inspired by Python — function-based API, exception chaining, hierarchical inheritance",
"homepage": "https://errors.deessejs.com",
"repository": {
"type": "git",
"url": "https://github.com/deessejs/errors.git"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
Expand Down
Loading