@rushstack/rush-sdk 5.136.1 → 5.137.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/rush-lib.d.ts +2 -0
- package/lib/logic/ProjectChangeAnalyzer.d.ts +3 -0
- package/lib-shim/index.js +219 -320
- package/lib-shim/index.js.map +1 -1
- package/package.json +10 -9
package/dist/rush-lib.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ import type { CollatedWriter } from '@rushstack/stream-collator';
|
|
|
13
13
|
import type { CommandLineParameter } from '@rushstack/ts-command-line';
|
|
14
14
|
import { CommandLineParameterKind } from '@rushstack/ts-command-line';
|
|
15
15
|
import { HookMap } from 'tapable';
|
|
16
|
+
import { IFileDiffStatus } from '@rushstack/package-deps-hash';
|
|
16
17
|
import { IPackageJson } from '@rushstack/node-core-library';
|
|
17
18
|
import { IPrefixMatch } from '@rushstack/lookup-by-path';
|
|
18
19
|
import { ITerminal } from '@rushstack/terminal';
|
|
@@ -3331,6 +3332,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
3331
3332
|
* the rush-project.json file into consideration.
|
|
3332
3333
|
*/
|
|
3333
3334
|
getChangedProjectsAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
3335
|
+
protected getChangesByProject(lookup: LookupByPath<RushConfigurationProject>, changedFiles: Map<string, IFileDiffStatus>): Map<RushConfigurationProject, Map<string, IFileDiffStatus>>;
|
|
3334
3336
|
private _getDataAsync;
|
|
3335
3337
|
private _getIgnoreMatcherForProjectAsync;
|
|
3336
3338
|
private _getRepoDepsAsync;
|
|
@@ -1,6 +1,8 @@
|
|
|
1
|
+
import { type IFileDiffStatus } from '@rushstack/package-deps-hash';
|
|
1
2
|
import type { ITerminal } from '@rushstack/terminal';
|
|
2
3
|
import type { RushConfiguration } from '../api/RushConfiguration';
|
|
3
4
|
import type { RushConfigurationProject } from '../api/RushConfigurationProject';
|
|
5
|
+
import type { LookupByPath } from '@rushstack/lookup-by-path';
|
|
4
6
|
/**
|
|
5
7
|
* @beta
|
|
6
8
|
*/
|
|
@@ -75,6 +77,7 @@ export declare class ProjectChangeAnalyzer {
|
|
|
75
77
|
* the rush-project.json file into consideration.
|
|
76
78
|
*/
|
|
77
79
|
getChangedProjectsAsync(options: IGetChangedProjectsOptions): Promise<Set<RushConfigurationProject>>;
|
|
80
|
+
protected getChangesByProject(lookup: LookupByPath<RushConfigurationProject>, changedFiles: Map<string, IFileDiffStatus>): Map<RushConfigurationProject, Map<string, IFileDiffStatus>>;
|
|
78
81
|
private _getDataAsync;
|
|
79
82
|
private _getIgnoreMatcherForProjectAsync;
|
|
80
83
|
private _getRepoDepsAsync;
|