Skip to content

Commit 46b8397

Browse files
authored
fix: add missing repo URL for OIDC (#5688)
Fixing a publish error > npm error 422 Unprocessable Entity - PUT https://registry.npmjs.org/@prisma%2fquery-compiler-wasm - Error verifying sigstore provenance bundle: Failed to validate repository information: package.json: "repository.url" is "", expected to match "https://github.com/prisma/prisma-engines" from provenance
1 parent a07a9de commit 46b8397

File tree

2 files changed

+13
-3
lines changed

2 files changed

+13
-3
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "@prisma/query-compiler-wasm",
33
"version": "0.0.0",
4-
"type": "module"
4+
"type": "module",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/prisma/prisma-engines",
8+
"directory": "query-compiler/query-compiler-wasm"
9+
}
510
}
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
{
22
"name": "@prisma/query-engine-wasm",
33
"version": "0.0.0",
4-
"type": "module"
5-
}
4+
"type": "module",
5+
"repository": {
6+
"type": "git",
7+
"url": "https://github.com/prisma/prisma-engines",
8+
"directory": "query-engine/query-engine-wasm"
9+
}
10+
}

0 commit comments

Comments
 (0)