repository-provider 32.6.1 → 32.6.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "repository-provider",
3
- "version": "32.6.1",
3
+ "version": "32.6.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -38,7 +38,7 @@
38
38
  "browser-ava": "^1.3.17",
39
39
  "c8": "^7.12.0",
40
40
  "documentation": "^14.0.1",
41
- "repository-provider-test-support": "^2.2.32",
41
+ "repository-provider-test-support": "^2.2.35",
42
42
  "semantic-release": "^20.0.2",
43
43
  "typescript": "^4.9.4"
44
44
  },
@@ -47,7 +47,7 @@
47
47
  },
48
48
  "repository": {
49
49
  "type": "git",
50
- "url": "https://github.com/arlac77/repository-provider.git"
50
+ "url": "https://github.com/arlac77/repository-provider"
51
51
  },
52
52
  "bugs": {
53
53
  "url": "https://github.com/arlac77/repository-provider/issues"
@@ -192,7 +192,7 @@ export class PullRequest extends OwnedObject {
192
192
  * @return {Repository} destination repository
193
193
  */
194
194
  get repository() {
195
- return this.owner?.repository;
195
+ return this.owner.repository;
196
196
  }
197
197
 
198
198
  /**
@@ -201,7 +201,7 @@ export class PullRequest extends OwnedObject {
201
201
  * @return {Promise}
202
202
  */
203
203
  async delete() {
204
- return this.owner?.deletePullRequest(this.name);
204
+ return this.owner.deletePullRequest(this.name);
205
205
  }
206
206
 
207
207
  /**