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

cli-ux

Package Overview
Dependencies
Maintainers
7
Versions
167
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cli-ux - npm Package Compare versions

Comparing version 6.0.5 to 6.0.6

7

CHANGELOG.md

@@ -5,2 +5,9 @@ # Changelog

### [6.0.6](https://github.com/oclif/cli-ux/compare/v6.0.5...v6.0.6) (2021-12-08)
### Bug Fixes
* bump deps and fix tests ([#465](https://github.com/oclif/cli-ux/issues/465)) ([44eecd0](https://github.com/oclif/cli-ux/commit/44eecd0df4471f47f7ba8d4bf7e43ea4b9ead4a0))
### [6.0.5](https://github.com/oclif/cli-ux/compare/v6.0.4...v6.0.5) (2021-12-07)

@@ -7,0 +14,0 @@

2

lib/action/pride-spinner.js

@@ -21,3 +21,3 @@ "use strict";

return s;
const has256 = supportsColor.stdout.has256 || (process.env.TERM || '').includes('256');
const has256 = supportsColor.stdout ? supportsColor.stdout.has256 : (process.env.TERM || '').includes('256');
const prideColor = prideColors[frameIndex] || prideColors[0];

@@ -24,0 +24,0 @@ return has256 ? prideColor(s) : chalk_1.default.magenta(s);

@@ -14,3 +14,3 @@ "use strict";

return s;
const has256 = supportsColor.stdout.has256 || (process.env.TERM || '').includes('256');
const has256 = supportsColor.stdout ? supportsColor.stdout.has256 : (process.env.TERM || '').includes('256');
return has256 ? `\u001B[38;5;104m${s}${deps_1.default.ansiStyles.reset.open}` : chalk_1.default.magenta(s);

@@ -17,0 +17,0 @@ }

{
"name": "cli-ux",
"description": "cli IO utilities",
"version": "6.0.5",
"version": "6.0.6",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/oclif/cli-ux/issues",
"dependencies": {
"@oclif/core": "^1.0.8",
"@oclif/core": "1.0.10",
"@oclif/linewrap": "^1.0.0",

@@ -47,3 +47,3 @@ "@oclif/screen": "^1.0.4 ",

"@types/strip-ansi": "^5.2.1",
"@types/supports-color": "^7.2.0",
"@types/supports-color": "^8.1.1",
"axios": "^0.21.0",

@@ -50,0 +50,0 @@ "chai": "^4.2.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