Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

repository-provider

Package Overview
Dependencies
Maintainers
1
Versions
662
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

repository-provider - npm Package Compare versions

Comparing version 3.6.0 to 3.6.1

4

dist/provider.js

@@ -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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc