Socket
Socket
Sign inDemoInstall

@rushstack/terminal

Package Overview
Dependencies
Maintainers
3
Versions
311
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rushstack/terminal - npm Package Compare versions

Comparing version 0.7.3 to 0.7.4

6

dist/terminal.d.ts

@@ -11,4 +11,4 @@ /**

import { Brand } from '@rushstack/node-core-library';
import { ITerminal } from '@rushstack/node-core-library';
import type { Brand } from '@rushstack/node-core-library';
import type { ITerminal } from '@rushstack/node-core-library';
import { NewlineKind } from '@rushstack/node-core-library';

@@ -374,2 +374,4 @@

*
* @param message - The message to display.
* @param terminal - The terminal to write the message to.
* @param boxWidth - The width of the box, defaults to half of the console width.

@@ -376,0 +378,0 @@ */

import { TerminalWritable } from './TerminalWritable';
import { ITerminalChunk } from './ITerminalChunk';
import type { ITerminalChunk } from './ITerminalChunk';
/**

@@ -4,0 +4,0 @@ * Constructor options for {@link CallbackWritable}.

@@ -1,3 +0,3 @@

import { ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, ITerminalTransformOptions } from './TerminalTransform';
import { type ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, type ITerminalTransformOptions } from './TerminalTransform';
/**

@@ -4,0 +4,0 @@ * Constructor options for {@link DiscardStdoutTransform}

@@ -1,2 +0,2 @@

import { ITerminalChunk } from './ITerminalChunk';
import type { ITerminalChunk } from './ITerminalChunk';
import { TerminalWritable } from './TerminalWritable';

@@ -3,0 +3,0 @@ /**

@@ -1,3 +0,3 @@

import { NewlineKind } from '@rushstack/node-core-library';
import { TextRewriter, TextRewriterState } from './TextRewriter';
import { type NewlineKind } from '@rushstack/node-core-library';
import { TextRewriter, type TextRewriterState } from './TextRewriter';
/**

@@ -4,0 +4,0 @@ * Constructor options for {@link NormalizeNewlinesTextRewriter}

@@ -1,2 +0,2 @@

import { ITerminal } from '@rushstack/node-core-library';
import type { ITerminal } from '@rushstack/node-core-library';
/**

@@ -71,2 +71,4 @@ * A sensible fallback column width for consoles.

*
* @param message - The message to display.
* @param terminal - The terminal to write the message to.
* @param boxWidth - The width of the box, defaults to half of the console width.

@@ -73,0 +75,0 @@ */

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

*
* @param message - The message to display.
* @param terminal - The terminal to write the message to.
* @param boxWidth - The width of the box, defaults to half of the console width.

@@ -97,0 +99,0 @@ */

@@ -1,2 +0,2 @@

import { TextRewriter, TextRewriterState } from './TextRewriter';
import { TextRewriter, type TextRewriterState } from './TextRewriter';
/**

@@ -3,0 +3,0 @@ * For use with {@link TextRewriterTransform}, this rewriter removes ANSI escape codes

@@ -1,3 +0,3 @@

import { TerminalWritable, ITerminalWritableOptions } from './TerminalWritable';
import { ITerminalChunk } from './ITerminalChunk';
import { TerminalWritable, type ITerminalWritableOptions } from './TerminalWritable';
import type { ITerminalChunk } from './ITerminalChunk';
/**

@@ -4,0 +4,0 @@ * Constructor options for {@link SplitterTransform}.

import { NewlineKind } from '@rushstack/node-core-library';
import { ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, ITerminalTransformOptions } from './TerminalTransform';
import { type ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, type ITerminalTransformOptions } from './TerminalTransform';
/**

@@ -5,0 +5,0 @@ * Constructor options for {@link StderrLineTransform}

@@ -1,2 +0,2 @@

import { ITerminalChunk } from './ITerminalChunk';
import { type ITerminalChunk } from './ITerminalChunk';
import { TerminalWritable } from './TerminalWritable';

@@ -3,0 +3,0 @@ /**

@@ -1,2 +0,2 @@

import { ITerminalChunk } from './ITerminalChunk';
import { type ITerminalChunk } from './ITerminalChunk';
import { TerminalWritable } from './TerminalWritable';

@@ -3,0 +3,0 @@ /**

@@ -1,2 +0,2 @@

import { TerminalWritable, ITerminalWritableOptions } from './TerminalWritable';
import { TerminalWritable, type ITerminalWritableOptions } from './TerminalWritable';
/**

@@ -3,0 +3,0 @@ * Constructor options for {@link TerminalTransform}.

@@ -1,2 +0,2 @@

import { ITerminalChunk } from './ITerminalChunk';
import type { ITerminalChunk } from './ITerminalChunk';
/**

@@ -3,0 +3,0 @@ * Constructor options for {@link TerminalWritable}

@@ -1,2 +0,2 @@

import { Brand } from '@rushstack/node-core-library';
import type { Brand } from '@rushstack/node-core-library';
/**

@@ -3,0 +3,0 @@ * Represents the internal state of a {@link TextRewriter} subclass.

@@ -1,5 +0,5 @@

import { NewlineKind } from '@rushstack/node-core-library';
import { ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, ITerminalTransformOptions } from './TerminalTransform';
import { TextRewriter } from './TextRewriter';
import type { NewlineKind } from '@rushstack/node-core-library';
import { type ITerminalChunk } from './ITerminalChunk';
import { TerminalTransform, type ITerminalTransformOptions } from './TerminalTransform';
import type { TextRewriter } from './TextRewriter';
/**

@@ -6,0 +6,0 @@ * Constructor options for {@link TextRewriterTransform}.

{
"name": "@rushstack/terminal",
"version": "0.7.3",
"version": "0.7.4",
"description": "User interface primitives for console applications",

@@ -14,8 +14,7 @@ "main": "lib/index.js",

"dependencies": {
"@rushstack/node-core-library": "3.60.0"
"@rushstack/node-core-library": "3.60.1"
},
"devDependencies": {
"colors": "~1.2.1",
"@rushstack/eslint-config": "3.3.4",
"@rushstack/heft": "0.61.1",
"@rushstack/heft": "0.61.2",
"local-node-rig": "1.0.0"

@@ -22,0 +21,0 @@ },

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

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

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

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

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

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