Skip to content

Commit

Permalink
Align repository URLs with other libraries (#3683)
Browse files Browse the repository at this point in the history
As of 2024-09-18, a change in NPM (?) results in `npm view @inrupt/solid-client-authn repository.url` not showing the `git+...` URL of the repo, but shows `https://...` instead. This is an attempt at making this command consistent accross all of our repositories.
  • Loading branch information
NSeydoux committed Sep 18, 2024
1 parent 9ad93b0 commit feb98cd
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@
"module": "dist/index.mjs",
"bundle": "dist/solid-client-authn.bundle.js",
"repository": {
"url": "https://github.com/inrupt/solid-client-authn"
"type": "git",
"url": "https://github.com/inrupt/solid-client-authn-js.git"
},
"exports": {
".": {
Expand Down
3 changes: 2 additions & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@
}
},
"repository": {
"url": "https://github.com/inrupt/solid-client-authn"
"type": "git",
"url": "https://github.com/inrupt/solid-client-authn-js.git"
},
"scripts": {
"prepublishOnly": "npm run build",
Expand Down
3 changes: 2 additions & 1 deletion packages/node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
"types": "dist/index.d.ts",
"module": "dist/index.mjs",
"repository": {
"url": "https://github.com/inrupt/solid-client-authn"
"type": "git",
"url": "https://github.com/inrupt/solid-client-authn-js.git"
},
"exports": {
".": {
Expand Down
4 changes: 4 additions & 0 deletions packages/oidc-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"repository": {
"type": "git",
"url": "https://github.com/inrupt/solid-client-authn-js.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"build": "rollup --config rollup.config.mjs",
Expand Down

0 comments on commit feb98cd

Please sign in to comment.