Skip to content

Commit 11aac83

Browse files
fix: declare repository metadata required by npm provenance (#51)
Trusted publishing now authenticates, but npm rejected the provenance bundle with E422 because the published manifests carry no repository field to match against the signed GitHub source. Add repository (type/url/directory) to @aryam/fixmap-core and @aryam/fixmap, and commit the .vercel gitignore entries added by vercel link. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent fceedac commit 11aac83

4 files changed

Lines changed: 13 additions & 0 deletions

File tree

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@ coverage/
1111
*.tsbuildinfo
1212
fixmap-report.json
1313
fixmap-report.md
14+
15+
.vercel

apps/web/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.vercel

packages/cli/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "0.4.0",
44
"description": "CLI and MCP server for mapping issues and diffs to relevant files, tests, and review risks.",
55
"license": "MIT",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/aryamthecodebreaker/FixMap.git",
9+
"directory": "packages/cli"
10+
},
611
"type": "module",
712
"bin": {
813
"fixmap": "dist/cli.js"

packages/core/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
"version": "0.4.0",
44
"description": "Core repository scanner, ranker, and report renderer for FixMap.",
55
"license": "MIT",
6+
"repository": {
7+
"type": "git",
8+
"url": "git+https://github.com/aryamthecodebreaker/FixMap.git",
9+
"directory": "packages/core"
10+
},
611
"type": "module",
712
"main": "dist/index.js",
813
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)