@rushstack/rush-sdk 5.118.4 → 5.118.5
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.
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { CommandLineParser } from '@rushstack/ts-command-line';
|
|
2
|
+
import { type ITerminal } from '@rushstack/terminal';
|
|
2
3
|
import { RushConfiguration } from '../api/RushConfiguration';
|
|
3
4
|
import { Telemetry } from '../logic/Telemetry';
|
|
4
5
|
import { RushGlobalFolder } from '../api/RushGlobalFolder';
|
|
@@ -28,6 +29,7 @@ export declare class RushCommandLineParser extends CommandLineParser {
|
|
|
28
29
|
constructor(options?: Partial<IRushCommandLineParserOptions>);
|
|
29
30
|
get isDebug(): boolean;
|
|
30
31
|
get isQuiet(): boolean;
|
|
32
|
+
get terminal(): ITerminal;
|
|
31
33
|
/**
|
|
32
34
|
* Utility to determine if the app should restrict writing to the console.
|
|
33
35
|
*/
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { ITerminal } from '@rushstack/terminal';
|
|
1
2
|
import type { Subspace } from '../../api/Subspace';
|
|
2
3
|
export interface IInstallManagerOptions {
|
|
3
4
|
/**
|
|
@@ -75,5 +76,9 @@ export interface IInstallManagerOptions {
|
|
|
75
76
|
* The specific subspace to install.
|
|
76
77
|
*/
|
|
77
78
|
subspace: Subspace;
|
|
79
|
+
/**
|
|
80
|
+
* The terminal where output should be printed.
|
|
81
|
+
*/
|
|
82
|
+
terminal: ITerminal;
|
|
78
83
|
}
|
|
79
84
|
//# sourceMappingURL=BaseInstallManagerTypes.d.ts.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { type ITerminal } from '@rushstack/terminal';
|
|
2
|
+
import { type ILogMessageCallbackOptions } from 'pnpm-sync-lib';
|
|
3
|
+
export declare class PnpmSyncUtilities {
|
|
4
|
+
private static _addLinePrefix;
|
|
5
|
+
static processLogMessage(options: ILogMessageCallbackOptions, terminal: ITerminal): void;
|
|
6
|
+
}
|
|
7
|
+
//# sourceMappingURL=PnpmSyncUtilities.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../../lib-shim/index")._rushSdk_loadInternalModule("utilities/PnpmSyncUtilities");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.118.
|
|
3
|
+
"version": "5.118.5",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,17 +25,17 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node-fetch": "2.6.2",
|
|
27
27
|
"tapable": "2.2.1",
|
|
28
|
-
"@rushstack/
|
|
29
|
-
"@rushstack/
|
|
28
|
+
"@rushstack/terminal": "0.10.0",
|
|
29
|
+
"@rushstack/node-core-library": "4.0.2"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/semver": "7.5.0",
|
|
33
33
|
"@types/webpack-env": "1.18.0",
|
|
34
|
-
"@microsoft/rush-lib": "5.118.
|
|
34
|
+
"@microsoft/rush-lib": "5.118.5",
|
|
35
35
|
"@rushstack/heft": "0.66.2",
|
|
36
36
|
"local-node-rig": "1.0.0",
|
|
37
|
-
"@rushstack/
|
|
38
|
-
"@rushstack/
|
|
37
|
+
"@rushstack/ts-command-line": "4.19.1",
|
|
38
|
+
"@rushstack/stream-collator": "4.1.40"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|
|
41
41
|
"build": "heft build --clean",
|