github-repository-provider 8.0.33 → 8.0.35

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,8 +1,9 @@
1
1
  {
2
2
  "name": "github-repository-provider",
3
- "version": "8.0.33",
3
+ "version": "8.0.35",
4
4
  "publishConfig": {
5
- "access": "public"
5
+ "access": "public",
6
+ "provenance": true
6
7
  },
7
8
  "exports": {
8
9
  ".": "./src/github-provider.mjs"
@@ -31,10 +32,10 @@
31
32
  "dependencies": {
32
33
  "content-entry": "^8.0.1",
33
34
  "fetch-link-util": "^1.0.14",
34
- "fetch-rate-limit-util": "^4.1.2",
35
- "matching-iterator": "^2.0.12",
35
+ "fetch-rate-limit-util": "^4.1.3",
36
+ "matching-iterator": "^2.1.0",
36
37
  "one-time-execution-method": "^3.0.6",
37
- "repository-provider": "^35.0.1"
38
+ "repository-provider": "^35.0.4"
38
39
  },
39
40
  "devDependencies": {
40
41
  "ava": "^6.1.1",
@@ -43,15 +44,15 @@
43
44
  "etag-cache-leveldb": "^2.0.3",
44
45
  "leveldown": "^6.1.1",
45
46
  "levelup": "^5.1.1",
46
- "repository-provider-test-support": "^3.0.2",
47
- "semantic-release": "^23.0.0"
47
+ "repository-provider-test-support": "^3.0.4",
48
+ "semantic-release": "^23.0.2"
48
49
  },
49
50
  "engines": {
50
51
  "node": ">=18.18.2"
51
52
  },
52
53
  "repository": {
53
54
  "type": "git",
54
- "url": "https://github.com/arlac77/github-repository-provider"
55
+ "url": "git+https://github.com/arlac77/github-repository-provider.git"
55
56
  },
56
57
  "bugs": {
57
58
  "url": "https://github.com/arlac77/github-repository-provider/issues"
@@ -60,7 +61,7 @@
60
61
  "template": {
61
62
  "inheritFrom": [
62
63
  "arlac77/template-arlac77-github",
63
- "arlac77/template-esm-only"
64
+ "arlac77/template-javascript-component"
64
65
  ]
65
66
  }
66
67
  }
@@ -211,7 +211,7 @@ export class GithubRepository extends Repository {
211
211
  * @return {string}
212
212
  */
213
213
  get issuesURL() {
214
- return `${this.provider.url}${this.fullName}/issues`;
214
+ return `${this.url}/issues`;
215
215
  }
216
216
 
217
217
  /**
@@ -219,7 +219,7 @@ export class GithubRepository extends Repository {
219
219
  * @return {string}
220
220
  */
221
221
  get homePageURL() {
222
- return `${this.provider.url}${this.fullName}#readme`;
222
+ return `${this.url}#readme`;
223
223
  }
224
224
 
225
225
  /**