@rushstack/terminal 0.3.37 → 0.3.40
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tsdoc-metadata.json +1 -1
- package/lib/index.js +5 -1
- package/lib/index.js.map +1 -1
- package/package.json +5 -5
package/dist/tsdoc-metadata.json
CHANGED
package/lib/index.js
CHANGED
|
@@ -3,7 +3,11 @@
|
|
|
3
3
|
// See LICENSE in the project root for license information.
|
|
4
4
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
5
5
|
if (k2 === undefined) k2 = k;
|
|
6
|
-
Object.
|
|
6
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
7
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
8
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
9
|
+
}
|
|
10
|
+
Object.defineProperty(o, k2, desc);
|
|
7
11
|
}) : (function(o, m, k, k2) {
|
|
8
12
|
if (k2 === undefined) k2 = k;
|
|
9
13
|
o[k2] = m[k];
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA,4FAA4F;AAC5F,2DAA2D;;;;;;;;;;;;;;;;AAE3D;;;;;;;;GAQG;AAEH,qDAAmC;AACnC,2DAAyC;AACzC,mDAAiC;AACjC,iDAA+B;AAC/B,kEAAgD;AAChD,mDAAiC;AACjC,6DAA2C;AAC3C,sDAAoC;AACpC,uDAAqC;AACrC,oDAAkC;AAClC,kDAAgC;AAChC,sDAAoC;AACpC,qDAAmC;AACnC,iDAA+B;AAC/B,0DAAwC","sourcesContent":["// Copyright (c) Microsoft Corporation. All rights reserved. Licensed under the MIT license.\n// See LICENSE in the project root for license information.\n\n/**\n * This library implements a system for processing human readable text that\n * will be output by console applications.\n *\n * @remarks\n * See the {@link TerminalWritable} documentation for an overview of the major concepts.\n *\n * @packageDocumentation\n */\n\nexport * from './CallbackWritable';\nexport * from './DiscardStdoutTransform';\nexport * from './ITerminalChunk';\nexport * from './MockWritable';\nexport * from './NormalizeNewlinesTextRewriter';\nexport * from './PrintUtilities';\nexport * from './RemoveColorsTextRewriter';\nexport * from './SplitterTransform';\nexport * from './StdioLineTransform';\nexport * from './StdioSummarizer';\nexport * from './StdioWritable';\nexport * from './TerminalTransform';\nexport * from './TerminalWritable';\nexport * from './TextRewriter';\nexport * from './TextRewriterTransform';\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/terminal",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.40",
|
|
4
4
|
"description": "User interface primitives for console applications",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"typings": "dist/terminal.d.ts",
|
|
@@ -11,14 +11,14 @@
|
|
|
11
11
|
"directory": "libraries/terminal"
|
|
12
12
|
},
|
|
13
13
|
"dependencies": {
|
|
14
|
-
"@rushstack/node-core-library": "3.45.
|
|
14
|
+
"@rushstack/node-core-library": "3.45.4",
|
|
15
15
|
"@types/node": "12.20.24",
|
|
16
16
|
"wordwrap": "~1.0.0"
|
|
17
17
|
},
|
|
18
18
|
"devDependencies": {
|
|
19
|
-
"@rushstack/eslint-config": "2.
|
|
20
|
-
"@rushstack/heft": "0.
|
|
21
|
-
"@rushstack/heft-node-rig": "1.
|
|
19
|
+
"@rushstack/eslint-config": "2.6.0",
|
|
20
|
+
"@rushstack/heft": "0.45.1",
|
|
21
|
+
"@rushstack/heft-node-rig": "1.9.2",
|
|
22
22
|
"@types/heft-jest": "1.0.1",
|
|
23
23
|
"@types/wordwrap": "~1.0.0",
|
|
24
24
|
"colors": "~1.2.1"
|