repository-provider 28.4.3 → 29.1.1
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 +2 -2
- package/src/pull-request.mjs +0 -6
- package/src/repository.mjs +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "29.1.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"ava": "^4.2.0",
|
|
37
37
|
"c8": "^7.11.2",
|
|
38
38
|
"documentation": "^13.2.5",
|
|
39
|
-
"repository-provider-test-support": "^2.1.
|
|
39
|
+
"repository-provider-test-support": "^2.1.15",
|
|
40
40
|
"semantic-release": "^19.0.2",
|
|
41
41
|
"typescript": "^4.6.3"
|
|
42
42
|
},
|
package/src/pull-request.mjs
CHANGED
|
@@ -227,12 +227,6 @@ export class PullRequest extends NamedObject {
|
|
|
227
227
|
return super.equals(other) && this.repository.equals(other.repository);
|
|
228
228
|
}
|
|
229
229
|
|
|
230
|
-
async write() {
|
|
231
|
-
this._write();
|
|
232
|
-
}
|
|
233
|
-
|
|
234
|
-
async _write() {}
|
|
235
|
-
|
|
236
230
|
/**
|
|
237
231
|
* Delete the pull request from the {@link Repository}.
|
|
238
232
|
* @see {@link Repository#deletePullRequest}
|
package/src/repository.mjs
CHANGED