@rushstack/rush-sdk 5.131.5 → 5.132.0
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/cli/actions/BaseAutoinstallerAction.d.ts +12 -0
- package/lib/cli/actions/BaseAutoinstallerAction.js +1 -0
- package/lib/cli/actions/InstallAction.d.ts +1 -0
- package/lib/cli/actions/InstallAutoinstallerAction.d.ts +8 -0
- package/lib/cli/actions/InstallAutoinstallerAction.js +1 -0
- package/lib/cli/actions/UpdateAutoinstallerAction.d.ts +4 -4
- package/lib/logic/Autoinstaller.d.ts +1 -2
- package/lib/logic/base/BaseInstallManagerTypes.d.ts +4 -0
- package/package.json +10 -10
package/dist/tsdoc-metadata.json
CHANGED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import type { IRequiredCommandLineStringParameter } from '@rushstack/ts-command-line';
|
|
2
|
+
import type { ITerminal } from '@rushstack/terminal';
|
|
3
|
+
import { BaseRushAction, type IBaseRushActionOptions } from './BaseRushAction';
|
|
4
|
+
import { Autoinstaller } from '../../logic/Autoinstaller';
|
|
5
|
+
export declare abstract class BaseAutoinstallerAction extends BaseRushAction {
|
|
6
|
+
protected readonly _name: IRequiredCommandLineStringParameter;
|
|
7
|
+
protected readonly _terminal: ITerminal;
|
|
8
|
+
constructor(options: IBaseRushActionOptions);
|
|
9
|
+
protected abstract prepareAsync(autoinstaller: Autoinstaller): Promise<void>;
|
|
10
|
+
protected runAsync(): Promise<void>;
|
|
11
|
+
}
|
|
12
|
+
//# sourceMappingURL=BaseAutoinstallerAction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../../../lib-shim/index")._rushSdk_loadInternalModule("cli/actions/BaseAutoinstallerAction");
|
|
@@ -3,6 +3,7 @@ import type { IInstallManagerOptions } from '../../logic/base/BaseInstallManager
|
|
|
3
3
|
import type { RushCommandLineParser } from '../RushCommandLineParser';
|
|
4
4
|
export declare class InstallAction extends BaseInstallAction {
|
|
5
5
|
private readonly _checkOnlyParameter;
|
|
6
|
+
private readonly _resolutionOnlyParameter;
|
|
6
7
|
constructor(parser: RushCommandLineParser);
|
|
7
8
|
protected buildInstallOptionsAsync(): Promise<Omit<IInstallManagerOptions, 'subspace'>>;
|
|
8
9
|
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import type { Autoinstaller } from '../../logic/Autoinstaller';
|
|
2
|
+
import type { RushCommandLineParser } from '../RushCommandLineParser';
|
|
3
|
+
import { BaseAutoinstallerAction } from './BaseAutoinstallerAction';
|
|
4
|
+
export declare class InstallAutoinstallerAction extends BaseAutoinstallerAction {
|
|
5
|
+
constructor(parser: RushCommandLineParser);
|
|
6
|
+
protected prepareAsync(autoinstaller: Autoinstaller): Promise<void>;
|
|
7
|
+
}
|
|
8
|
+
//# sourceMappingURL=InstallAutoinstallerAction.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require("../../../lib-shim/index")._rushSdk_loadInternalModule("cli/actions/InstallAutoinstallerAction");
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { BaseRushAction } from './BaseRushAction';
|
|
2
1
|
import type { RushCommandLineParser } from '../RushCommandLineParser';
|
|
3
|
-
|
|
4
|
-
|
|
2
|
+
import type { Autoinstaller } from '../../logic/Autoinstaller';
|
|
3
|
+
import { BaseAutoinstallerAction } from './BaseAutoinstallerAction';
|
|
4
|
+
export declare class UpdateAutoinstallerAction extends BaseAutoinstallerAction {
|
|
5
5
|
constructor(parser: RushCommandLineParser);
|
|
6
|
-
protected
|
|
6
|
+
protected prepareAsync(autoinstaller: Autoinstaller): Promise<void>;
|
|
7
7
|
}
|
|
8
8
|
//# sourceMappingURL=UpdateAutoinstallerAction.d.ts.map
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import type { RushConfiguration } from '../api/RushConfiguration';
|
|
2
2
|
import type { RushGlobalFolder } from '../api/RushGlobalFolder';
|
|
3
|
-
interface IAutoinstallerOptions {
|
|
3
|
+
export interface IAutoinstallerOptions {
|
|
4
4
|
autoinstallerName: string;
|
|
5
5
|
rushConfiguration: RushConfiguration;
|
|
6
6
|
rushGlobalFolder: RushGlobalFolder;
|
|
@@ -20,5 +20,4 @@ export declare class Autoinstaller {
|
|
|
20
20
|
updateAsync(): Promise<void>;
|
|
21
21
|
private _logIfConsoleOutputIsNotRestricted;
|
|
22
22
|
}
|
|
23
|
-
export {};
|
|
24
23
|
//# sourceMappingURL=Autoinstaller.d.ts.map
|
|
@@ -15,6 +15,10 @@ export interface IInstallManagerOptions {
|
|
|
15
15
|
* Whether to check the validation before install only, without actually installing anything.
|
|
16
16
|
*/
|
|
17
17
|
checkOnly: boolean;
|
|
18
|
+
/**
|
|
19
|
+
* Whether to only run resolutions. Only supported for PNPM.
|
|
20
|
+
*/
|
|
21
|
+
resolutionOnly?: boolean;
|
|
18
22
|
/**
|
|
19
23
|
* Whether a "--bypass-policy" flag can be specified.
|
|
20
24
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.132.0",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,21 +35,21 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@types/node-fetch": "2.6.2",
|
|
37
37
|
"tapable": "2.2.1",
|
|
38
|
-
"@rushstack/lookup-by-path": "0.1.
|
|
39
|
-
"@rushstack/
|
|
40
|
-
"@rushstack/
|
|
38
|
+
"@rushstack/lookup-by-path": "0.1.2",
|
|
39
|
+
"@rushstack/terminal": "0.14.0",
|
|
40
|
+
"@rushstack/node-core-library": "5.7.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/semver": "7.5.0",
|
|
44
44
|
"@types/webpack-env": "1.18.0",
|
|
45
45
|
"webpack": "~5.82.1",
|
|
46
|
-
"@microsoft/rush-lib": "5.
|
|
47
|
-
"@rushstack/heft": "0.
|
|
46
|
+
"@microsoft/rush-lib": "5.132.0",
|
|
47
|
+
"@rushstack/heft": "0.67.0",
|
|
48
48
|
"local-node-rig": "1.0.0",
|
|
49
|
-
"@rushstack/
|
|
50
|
-
"@rushstack/ts-command-line": "4.22.
|
|
51
|
-
"@rushstack/
|
|
52
|
-
"@rushstack/
|
|
49
|
+
"@rushstack/heft-webpack5-plugin": "0.10.9",
|
|
50
|
+
"@rushstack/ts-command-line": "4.22.6",
|
|
51
|
+
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.64",
|
|
52
|
+
"@rushstack/stream-collator": "4.1.65"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|
|
55
55
|
"build": "heft build --clean",
|