Socket
Socket
Sign inDemoInstall

@percy/cli-build

Package Overview
Dependencies
Maintainers
6
Versions
238
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@percy/cli-build - npm Package Compare versions

Comparing version 1.20.3 to 1.21.0

10

dist/wait.js

@@ -37,2 +37,6 @@ import command from '@percy/cli-command';

short: 'f'
}, {
name: 'pass-if-approved',
description: "Doesn't exit with an error if the build is approved, regardless of if diffs are found.",
inclusive: ['fail-on-changes']
}],

@@ -122,6 +126,8 @@ examples: ['$0 --build 2222222', '$0 --project org/project --commit HEAD'],

state,
'review-state': reviewState,
'total-comparisons-diff': diffs
} = {}
} = {}, {
failOnChanges
failOnChanges,
passIfApproved
}) {

@@ -131,4 +137,4 @@ // not pending and not processing

// not finished or finished with diffs
state !== 'finished' || failOnChanges && !!diffs);
state !== 'finished' || failOnChanges && !!diffs && !(passIfApproved && reviewState === 'approved'));
}
export default wait;

6

package.json
{
"name": "@percy/cli-build",
"version": "1.20.3",
"version": "1.21.0",
"license": "MIT",

@@ -35,5 +35,5 @@ "repository": {

"dependencies": {
"@percy/cli-command": "1.20.3"
"@percy/cli-command": "1.21.0"
},
"gitHead": "520bd156af47080881b651e4819014cbacf76781"
"gitHead": "44c63a3214f1fbfb0b1adcb6fcfe284a9f54d0cb"
}
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