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

@rushstack/node-core-library

Package Overview
Dependencies
Maintainers
3
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/node-core-library - npm Package Compare versions

Comparing version 3.34.3 to 3.34.4

12

CHANGELOG.json

@@ -5,2 +5,14 @@ {

{
"version": "3.34.4",
"tag": "@rushstack/node-core-library_v3.34.4",
"date": "Tue, 27 Oct 2020 15:10:13 GMT",
"comments": {
"patch": [
{
"comment": "Fix an issue where the TextAttribute.Bold ANSI escape was not rendered correctly by Linux"
}
]
}
},
{
"version": "3.34.3",

@@ -7,0 +19,0 @@ "tag": "@rushstack/node-core-library_v3.34.3",

9

CHANGELOG.md
# Change Log - @rushstack/node-core-library
This log was last generated on Tue, 06 Oct 2020 00:24:06 GMT and should not be manually modified.
This log was last generated on Tue, 27 Oct 2020 15:10:13 GMT and should not be manually modified.
## 3.34.4
Tue, 27 Oct 2020 15:10:13 GMT
### Patches
- Fix an issue where the TextAttribute.Bold ANSI escape was not rendered correctly by Linux
## 3.34.3

@@ -6,0 +13,0 @@ Tue, 06 Oct 2020 00:24:06 GMT

2

lib/Terminal/AnsiEscape.js

@@ -99,4 +99,2 @@ "use strict";

return 'bold';
case Colors_1.ConsoleColorCodes.BoldOff:
return 'bold-off';
case Colors_1.ConsoleColorCodes.Dim:

@@ -103,0 +101,0 @@ return 'dim';

@@ -61,3 +61,2 @@ /**

Bold = 1,
BoldOff = 21,
Dim = 2,

@@ -64,0 +63,0 @@ NormalColorOrIntensity = 22,

@@ -61,3 +61,6 @@ "use strict";

ConsoleColorCodes[ConsoleColorCodes["Bold"] = 1] = "Bold";
ConsoleColorCodes[ConsoleColorCodes["BoldOff"] = 21] = "BoldOff";
// On Linux, the "BoldOff" code instead causes the text to be double-underlined:
// https://en.wikipedia.org/wiki/Talk:ANSI_escape_code#SGR_21%E2%80%94%60Bold_off%60_not_widely_supported
// Use "NormalColorOrIntensity" instead
// BoldOff = 21,
ConsoleColorCodes[ConsoleColorCodes["Dim"] = 2] = "Dim";

@@ -64,0 +67,0 @@ ConsoleColorCodes[ConsoleColorCodes["NormalColorOrIntensity"] = 22] = "NormalColorOrIntensity";

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

startColorCodes.push(Colors_1.ConsoleColorCodes.Bold);
endColorCodes.push(Colors_1.ConsoleColorCodes.BoldOff);
endColorCodes.push(Colors_1.ConsoleColorCodes.NormalColorOrIntensity);
break;

@@ -244,0 +244,0 @@ }

{
"name": "@rushstack/node-core-library",
"version": "3.34.3",
"version": "3.34.4",
"description": "Core libraries that every NodeJS toolchain project should use",

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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