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 6.0.0 to 6.1.0

3

dist/provider.js

@@ -206,2 +206,5 @@ 'use strict';

}
async createBranch(name, options) {
return this.repository.createBranch(name, this, options);
}
list(matchingPatterns) {

@@ -208,0 +211,0 @@ return _wrapAsyncGenerator(function* () {})();

2

package.json
{
"name": "repository-provider",
"version": "6.0.0",
"version": "6.1.0",
"publishConfig": {

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

@@ -178,2 +178,13 @@ import { notImplementedError } from "./util";

/**
* Create a new {@link Branch} by cloning a given source branch
* Simplay calls Repository.createBranch() with the receiver as source branch
* @param {string} name
* @param {Object} options
* @return {Promise<Branch>} newly created branch (or already present old one with the same name)
*/
async createBranch(name, options) {
return this.repository.createBranch(name, this, options);
}
/**
* List paths of the branch

@@ -202,3 +213,2 @@ * @param {string[]} matchingPatterns

async _initialize() {}

@@ -205,0 +215,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