repository-provider
Advanced tools
Comparing version 3.6.0 to 3.6.1
@@ -64,4 +64,4 @@ 'use strict'; | ||
return this.isDefault | ||
? this.repository.name | ||
: `${this.repository.name}#${this.name}`; | ||
? this.repository.fullName | ||
: `${this.repository.fullName}#${this.name}`; | ||
} | ||
@@ -68,0 +68,0 @@ get url() { |
{ | ||
"name": "repository-provider", | ||
"version": "3.6.0", | ||
"version": "3.6.1", | ||
"publishConfig": { | ||
@@ -47,3 +47,3 @@ "access": "public" | ||
"semantic-release": "^15.9.12", | ||
"travis-deploy-once": "^5.0.6" | ||
"travis-deploy-once": "^5.0.7" | ||
}, | ||
@@ -50,0 +50,0 @@ "engines": { |
@@ -78,10 +78,10 @@ import { notImplementedError } from "./util"; | ||
/** | ||
* Repository and branch name combined. | ||
* Repository fullName and branch name combined. | ||
* But skipping the branch name if it is the default branch | ||
* @return {string} 'repo#branch' | ||
* @return {string} 'user/repo#branch' | ||
*/ | ||
get fullCondensedName() { | ||
return this.isDefault | ||
? this.repository.name | ||
: `${this.repository.name}#${this.name}`; | ||
? this.repository.fullName | ||
: `${this.repository.fullName}#${this.name}`; | ||
} | ||
@@ -88,0 +88,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
52399
0