Socket
Socket
Sign inDemoInstall

@rushstack/terminal

Package Overview
Dependencies
Maintainers
3
Versions
312
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.1.11 to 0.1.12

26

CHANGELOG.json

@@ -5,2 +5,28 @@ {

{
"version": "0.1.12",
"tag": "@rushstack/terminal_v0.1.12",
"date": "Wed, 30 Sep 2020 06:53:53 GMT",
"comments": {
"patch": [
{
"comment": "Update README.md"
}
],
"dependency": [
{
"comment": "Updating dependency \"@rushstack/node-core-library\" to `3.34.0`"
},
{
"comment": "Updating dependency \"@rushstack/eslint-config\" to `2.1.2`"
},
{
"comment": "Updating dependency \"@rushstack/heft\" to `0.14.0`"
},
{
"comment": "Updating dependency \"@rushstack/heft-node-rig\" to `0.1.0`"
}
]
}
},
{
"version": "0.1.11",

@@ -7,0 +33,0 @@ "tag": "@rushstack/terminal_v0.1.11",

9

CHANGELOG.md
# Change Log - @rushstack/terminal
This log was last generated on Tue, 22 Sep 2020 05:45:57 GMT and should not be manually modified.
This log was last generated on Wed, 30 Sep 2020 06:53:53 GMT and should not be manually modified.
## 0.1.12
Wed, 30 Sep 2020 06:53:53 GMT
### Patches
- Update README.md
## 0.1.11

@@ -6,0 +13,0 @@ Tue, 22 Sep 2020 05:45:57 GMT

2

dist/terminal.d.ts

@@ -574,3 +574,3 @@ /**

*/
readonly isOpen: boolean;
get isOpen(): boolean;
/**

@@ -577,0 +577,0 @@ * Upstream objects call this method to provide inputs to this object.

@@ -8,5 +8,5 @@ // This file is read by tools that parse documentation comments conforming to the TSDoc standard.

"packageName": "@microsoft/api-extractor",
"packageVersion": "7.9.21"
"packageVersion": "7.9.22"
}
]
}

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.CallbackWritable = void 0;
const TerminalWritable_1 = require("./TerminalWritable");

@@ -7,0 +8,0 @@ /**

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.DiscardStdoutTransform = void 0;
const TerminalTransform_1 = require("./TerminalTransform");

@@ -7,0 +8,0 @@ var State;

"use strict";
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
function __export(m) {
for (var p in m) if (!exports.hasOwnProperty(p)) exports[p] = m[p];
}
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });

@@ -17,16 +24,16 @@ /**

*/
__export(require("./CallbackWritable"));
__export(require("./DiscardStdoutTransform"));
__export(require("./ITerminalChunk"));
__export(require("./MockWritable"));
__export(require("./NormalizeNewlinesTextRewriter"));
__export(require("./RemoveColorsTextRewriter"));
__export(require("./SplitterTransform"));
__export(require("./StdioLineTransform"));
__export(require("./StdioSummarizer"));
__export(require("./StdioWritable"));
__export(require("./TerminalTransform"));
__export(require("./TerminalWritable"));
__export(require("./TextRewriter"));
__export(require("./TextRewriterTransform"));
__exportStar(require("./CallbackWritable"), exports);
__exportStar(require("./DiscardStdoutTransform"), exports);
__exportStar(require("./ITerminalChunk"), exports);
__exportStar(require("./MockWritable"), exports);
__exportStar(require("./NormalizeNewlinesTextRewriter"), exports);
__exportStar(require("./RemoveColorsTextRewriter"), exports);
__exportStar(require("./SplitterTransform"), exports);
__exportStar(require("./StdioLineTransform"), exports);
__exportStar(require("./StdioSummarizer"), exports);
__exportStar(require("./StdioWritable"), exports);
__exportStar(require("./TerminalTransform"), exports);
__exportStar(require("./TerminalWritable"), exports);
__exportStar(require("./TextRewriter"), exports);
__exportStar(require("./TextRewriterTransform"), exports);
//# sourceMappingURL=index.js.map

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.MockWritable = void 0;
const TerminalWritable_1 = require("./TerminalWritable");

@@ -28,3 +29,3 @@ const node_core_library_1 = require("@rushstack/node-core-library");

getFormattedChunks() {
return this.chunks.map((x) => (Object.assign({}, x, { text: node_core_library_1.AnsiEscape.formatForTests(x.text) })));
return this.chunks.map((x) => (Object.assign(Object.assign({}, x), { text: node_core_library_1.AnsiEscape.formatForTests(x.text) })));
}

@@ -31,0 +32,0 @@ }

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.NormalizeNewlinesTextRewriter = void 0;
const node_core_library_1 = require("@rushstack/node-core-library");

@@ -7,0 +8,0 @@ const TextRewriter_1 = require("./TextRewriter");

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.RemoveColorsTextRewriter = void 0;
const node_core_library_1 = require("@rushstack/node-core-library");

@@ -7,0 +8,0 @@ const TextRewriter_1 = require("./TextRewriter");

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.SplitterTransform = void 0;
const TerminalWritable_1 = require("./TerminalWritable");

@@ -7,0 +8,0 @@ /**

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.StderrLineTransform = void 0;
const node_core_library_1 = require("@rushstack/node-core-library");

@@ -7,0 +8,0 @@ const TerminalTransform_1 = require("./TerminalTransform");

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.StdioSummarizer = void 0;
const TerminalWritable_1 = require("./TerminalWritable");

@@ -7,0 +8,0 @@ /**

"use strict";
// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.
// See LICENSE in the project root for license information.
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
Object.defineProperty(o, "default", { enumerable: true, value: v });
}) : function(o, v) {
o["default"] = v;
});
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
__setModuleDefault(result, mod);
return result;
};
Object.defineProperty(exports, "__esModule", { value: true });
const process = require("process");
exports.StdioWritable = void 0;
const process = __importStar(require("process"));
const TerminalWritable_1 = require("./TerminalWritable");

@@ -27,4 +47,4 @@ /**

}
exports.StdioWritable = StdioWritable;
StdioWritable.instance = new StdioWritable();
exports.StdioWritable = StdioWritable;
//# sourceMappingURL=StdioWritable.js.map

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.TerminalTransform = void 0;
const TerminalWritable_1 = require("./TerminalWritable");

@@ -7,0 +8,0 @@ /**

@@ -80,3 +80,3 @@ import { ITerminalChunk } from './ITerminalChunk';

*/
readonly isOpen: boolean;
get isOpen(): boolean;
/**

@@ -83,0 +83,0 @@ * Upstream objects call this method to provide inputs to this object.

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.TerminalWritable = void 0;
/**

@@ -7,0 +8,0 @@ * The abstract base class for objects that can present, route, or process text output for

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.TextRewriter = void 0;
/**

@@ -7,0 +8,0 @@ * The abstract base class for operations that can be applied by {@link TextRewriterTransform}.

@@ -5,2 +5,3 @@ "use strict";

Object.defineProperty(exports, "__esModule", { value: true });
exports.TextRewriterTransform = void 0;
const TerminalTransform_1 = require("./TerminalTransform");

@@ -7,0 +8,0 @@ const RemoveColorsTextRewriter_1 = require("./RemoveColorsTextRewriter");

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

@@ -15,9 +15,9 @@ "main": "lib/index.js",

"dependencies": {
"@rushstack/node-core-library": "3.33.6",
"@rushstack/node-core-library": "3.34.0",
"@types/node": "10.17.13"
},
"devDependencies": {
"@microsoft/rush-stack-compiler-3.5": "0.8.21",
"@rushstack/eslint-config": "2.1.1",
"@rushstack/heft": "0.13.9",
"@rushstack/eslint-config": "2.1.2",
"@rushstack/heft": "0.14.0",
"@rushstack/heft-node-rig": "0.1.0",
"@types/heft-jest": "1.0.1",

@@ -24,0 +24,0 @@ "colors": "~1.2.1"

@@ -46,2 +46,9 @@ # @rushstack/terminal

API documentation for this package: https://rushstack.io/pages/api/terminal/
## Links
- [CHANGELOG.md](
https://github.com/microsoft/rushstack/blob/master/libraries/terminal/CHANGELOG.md) - Find
out what's new in the latest version
- [API Reference](https://rushstack.io/pages/api/terminal/)
`@rushstack/terminal` is part of the [Rush Stack](https://rushstack.io/) family of projects.

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