Skip to content

Commit a25e4bb

Browse files
authored
chore: add repository URL for trusted publishing (#640)
### Summary There is an error in publishing. Perhaps because the repo is now public? > npm error 422 Unprocessable Entity - PUT https://registry.npmjs.org/@idetik%2fcore - Error verifying sigstore provenance bundle: Failed to validate repository information: package.json: "repository.url" is "", expected to match "https://github.com/chanzuckerberg/idetik" from provenance See also: https://docs.npmjs.com/cli/v11/configuring-npm/package-json#repository I also ran `npm pkg fix` in both the root and the workspace, which added the empty "version" field in the root. ### Related Issue [Failed release run](https://github.com/chanzuckerberg/idetik/actions/runs/24162292215) ### Tests & Checks I'm not sure how to test without publishing a new release, so I guess let's just merge this and hope
1 parent 97e4777 commit a25e4bb

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,5 +44,6 @@
4444
"vite-plugin-eslint": "^1.8.1",
4545
"vite-plugin-glsl": "^1.3.0",
4646
"vitest": "^3.0.9"
47-
}
47+
},
48+
"version": ""
4849
}

packages/core/package.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
"name": "@idetik/core",
33
"version": "0.1.0",
44
"type": "module",
5+
"repository": {
6+
"type": "git",
7+
"url": "git+https://github.com/chanzuckerberg/idetik.git",
8+
"directory": "packages/core"
9+
},
510
"scripts": {
611
"dev": "vite",
712
"compile": "tsc",

0 commit comments

Comments
 (0)