Socket
Socket
Sign inDemoInstall

@percy/cli

Package Overview
Dependencies
Maintainers
6
Versions
237
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@percy/cli - npm Package Compare versions

Comparing version 1.27.0 to 1.27.1-beta.0

15

dist/commands.js

@@ -99,2 +99,9 @@ import os from 'os';

}
function formatFilepath(filepath) {
/* istanbul ignore next */
if (!process.platform.startsWith('win')) {
filepath = '/' + filepath;
}
return filepath;
}

@@ -148,3 +155,9 @@ // Imports and returns compatibile CLI commands from various sources

let modulePath = path.join(pkgPath, cmdPath);
let module = await import(url.pathToFileURL(modulePath).href);
// Below code is used in scripts/build.sh to update href
let module = null;
if (process.env.NODE_ENV === 'executable') {
module = await import(formatFilepath(modulePath));
} else {
module = await import(url.pathToFileURL(modulePath).href);
}
(_module$default = module.default).packageInformation || (_module$default.packageInformation = pkg);

@@ -151,0 +164,0 @@ return module.default;

24

package.json
{
"name": "@percy/cli",
"version": "1.27.0",
"version": "1.27.1-beta.0",
"license": "MIT",

@@ -12,3 +12,3 @@ "repository": {

"access": "public",
"tag": "latest"
"tag": "beta"
},

@@ -35,13 +35,13 @@ "files": [

"dependencies": {
"@percy/cli-app": "1.27.0",
"@percy/cli-build": "1.27.0",
"@percy/cli-command": "1.27.0",
"@percy/cli-config": "1.27.0",
"@percy/cli-exec": "1.27.0",
"@percy/cli-snapshot": "1.27.0",
"@percy/cli-upload": "1.27.0",
"@percy/client": "1.27.0",
"@percy/logger": "1.27.0"
"@percy/cli-app": "1.27.1-beta.0",
"@percy/cli-build": "1.27.1-beta.0",
"@percy/cli-command": "1.27.1-beta.0",
"@percy/cli-config": "1.27.1-beta.0",
"@percy/cli-exec": "1.27.1-beta.0",
"@percy/cli-snapshot": "1.27.1-beta.0",
"@percy/cli-upload": "1.27.1-beta.0",
"@percy/client": "1.27.1-beta.0",
"@percy/logger": "1.27.1-beta.0"
},
"gitHead": "3b92a894d4cf6dcdedccf42b86aaf61f331535c6"
"gitHead": "fc67a213ca35419285cba8a8eb563cf5b4958420"
}

Sorry, the diff of this file is not supported yet

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