repository-provider 36.0.1 → 36.0.3
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 +4 -4
- package/src/repository-group.mjs +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "repository-provider",
|
|
3
|
-
"version": "36.0.
|
|
3
|
+
"version": "36.0.3",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public",
|
|
6
6
|
"provenance": true
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"content-entry": "^14.2.7",
|
|
37
37
|
"matching-iterator": "^2.1.5",
|
|
38
|
-
"pacc": "^4.
|
|
38
|
+
"pacc": "^4.42.0"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"ava": "^6.4.1",
|
|
42
42
|
"browser-ava": "^2.3.45",
|
|
43
43
|
"c8": "^10.1.3",
|
|
44
44
|
"documentation": "^14.0.3",
|
|
45
|
-
"repository-provider-test-support": "^5.0.
|
|
45
|
+
"repository-provider-test-support": "^5.0.2",
|
|
46
46
|
"semantic-release": "^25.0.2"
|
|
47
47
|
},
|
|
48
48
|
"engines": {
|
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"bugs": {
|
|
56
56
|
"url": "https://github.com/arlac77/repository-provider/issues"
|
|
57
57
|
},
|
|
58
|
-
"homepage": "
|
|
58
|
+
"homepage": "",
|
|
59
59
|
"template": {
|
|
60
60
|
"inheritFrom": [
|
|
61
61
|
"arlac77/template-arlac77-github",
|
package/src/repository-group.mjs
CHANGED
|
@@ -53,7 +53,7 @@ export class RepositoryGroup extends RepositoryOwner(OwnedObject) {
|
|
|
53
53
|
* The url of home page.
|
|
54
54
|
* @return {string}
|
|
55
55
|
*/
|
|
56
|
-
homePageURL: url_attribute_writable
|
|
56
|
+
homePageURL: { ...url_attribute_writable, externalName: "homepage" }
|
|
57
57
|
};
|
|
58
58
|
|
|
59
59
|
get isAdmin() {
|