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.8.2 to 3.8.3

6

dist/provider.js

@@ -368,3 +368,3 @@ 'use strict';

super();
Object.defineProperties(this, {
const properties = {
config: {

@@ -374,3 +374,5 @@ value: this.constructor.options(options)

repositoryGroups: { value: new Map() }
});
};
propertiesFromOptions(properties, options, this.constructor.defaultOptions);
Object.defineProperties(this, properties);
}

@@ -377,0 +379,0 @@ async repositoryGroup(name, options) {

{
"name": "repository-provider",
"version": "3.8.2",
"version": "3.8.3",
"publishConfig": {

@@ -5,0 +5,0 @@ "access": "public"

@@ -7,3 +7,3 @@ import { Branch } from "./branch";

import { Content } from "./content";
import { notImplementedError } from "./util";
import { notImplementedError, propertiesFromOptions } from "./util";

@@ -49,8 +49,13 @@ export { Repository, Branch, PullRequest, Owner, RepositoryGroup, Content };

Object.defineProperties(this, {
const properties = {
config: {
// TODO ret rid of config
value: this.constructor.options(options)
},
repositoryGroups: { value: new Map() }
});
};
propertiesFromOptions(properties, options, this.constructor.defaultOptions);
Object.defineProperties(this, properties);
}

@@ -57,0 +62,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