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

percy-client

Package Overview
Dependencies
Maintainers
1
Versions
62
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

percy-client - npm Package Compare versions

Comparing version 1.0.3 to 1.0.4

13

dist/main.js

@@ -104,2 +104,11 @@ 'use strict';

value: function createBuild(repo, options) {
var parallelNonce = this.environment.parallelNonce;
var parallelTotalShards = this.environment.parallelTotalShards;
// Only pass parallelism data if it all exists.
if (!parallelNonce || !parallelTotalShards) {
parallelNonce = null;
parallelTotalShards = null;
}
options = options || {};

@@ -113,4 +122,4 @@ var data = {

'pull-request-number': this.environment.pullRequestNumber,
'parallel-nonce': this.environment.parallelNonce,
'parallel-total-shards': this.environment.parallelTotalShards
'parallel-nonce': parallelNonce,
'parallel-total-shards': parallelTotalShards
}

@@ -117,0 +126,0 @@ }

2

package.json
{
"name": "percy-client",
"version": "1.0.3",
"version": "1.0.4",
"description": "JavaScript API client library for Percy (https://percy.io).",

@@ -5,0 +5,0 @@ "main": "dist/main.js",

Sorry, the diff of this file is too big to display

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