bitbucket-repository-provider 4.4.33 → 4.4.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/README.md +0 -5
- package/package.json +5 -6
- package/src/bitbucket-repository.mjs +0 -7
package/README.md
CHANGED
|
@@ -56,7 +56,6 @@ repository provider for bitbucket
|
|
|
56
56
|
* [BitbucketRepository](#bitbucketrepository)
|
|
57
57
|
* [Parameters](#parameters-9)
|
|
58
58
|
* [Properties](#properties)
|
|
59
|
-
* [urls](#urls)
|
|
60
59
|
* [homePageURL](#homepageurl)
|
|
61
60
|
* [issuesURL](#issuesurl)
|
|
62
61
|
* [update](#update)
|
|
@@ -274,10 +273,6 @@ a repository hosted on bitbucket
|
|
|
274
273
|
* `group` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
275
274
|
* `user` **[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)** 
|
|
276
275
|
|
|
277
|
-
### urls
|
|
278
|
-
|
|
279
|
-
Returns **[Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array)<[string](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/String)>** url
|
|
280
|
-
|
|
281
276
|
### homePageURL
|
|
282
277
|
|
|
283
278
|
Deliver the url of home page.
|
package/package.json
CHANGED
|
@@ -1,10 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bitbucket-repository-provider",
|
|
3
|
-
"version": "4.4.
|
|
3
|
+
"version": "4.4.35",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"sideEffects": false,
|
|
8
7
|
"exports": {
|
|
9
8
|
".": "./src/bitbucket-provider.mjs"
|
|
10
9
|
},
|
|
@@ -30,15 +29,15 @@
|
|
|
30
29
|
"lint:docs": "documentation lint ./src/**/*.mjs"
|
|
31
30
|
},
|
|
32
31
|
"dependencies": {
|
|
33
|
-
"content-entry": "^
|
|
32
|
+
"content-entry": "^6.0.0",
|
|
34
33
|
"fetch-rate-limit-util": "^3.1.6",
|
|
35
34
|
"matching-iterator": "^2.0.11",
|
|
36
35
|
"node-fetch": "^3.3.0",
|
|
37
36
|
"one-time-execution-method": "^3.0.6",
|
|
38
|
-
"repository-provider": "^32.6.
|
|
37
|
+
"repository-provider": "^32.6.2"
|
|
39
38
|
},
|
|
40
39
|
"devDependencies": {
|
|
41
|
-
"ava": "^5.1.
|
|
40
|
+
"ava": "^5.1.1",
|
|
42
41
|
"c8": "^7.12.0",
|
|
43
42
|
"documentation": "^14.0.1",
|
|
44
43
|
"repository-provider-test-support": "^2.2.32",
|
|
@@ -49,7 +48,7 @@
|
|
|
49
48
|
},
|
|
50
49
|
"repository": {
|
|
51
50
|
"type": "git",
|
|
52
|
-
"url": "https://github.com/arlac77/bitbucket-repository-provider
|
|
51
|
+
"url": "https://github.com/arlac77/bitbucket-repository-provider"
|
|
53
52
|
},
|
|
54
53
|
"bugs": {
|
|
55
54
|
"url": "https://github.com/arlac77/bitbucket-repository-provider/issues"
|
|
@@ -34,13 +34,6 @@ export class BitbucketRepository extends Repository {
|
|
|
34
34
|
return this.name.split(/\//)[0];
|
|
35
35
|
}
|
|
36
36
|
|
|
37
|
-
/**
|
|
38
|
-
* @return {string[]} url
|
|
39
|
-
*/
|
|
40
|
-
get urls() {
|
|
41
|
-
return [`${this.provider.url}${this.slug}.git`];
|
|
42
|
-
}
|
|
43
|
-
|
|
44
37
|
/**
|
|
45
38
|
* Deliver the url of home page.
|
|
46
39
|
* @return {string} '.../overwiew'
|