@rushstack/rush-sdk 5.102.0 → 5.103.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.
@@ -8,6 +8,12 @@ export interface IDeployScenarioProjectJson {
8
8
  patternsToInclude?: string[];
9
9
  patternsToExclude?: string[];
10
10
  }
11
+ export interface IDeployScenarioDependencyJson {
12
+ dependencyName: string;
13
+ dependencyVersionRange: string;
14
+ patternsToExclude?: string[];
15
+ patternsToInclude?: string[];
16
+ }
11
17
  export interface IDeployScenarioJson {
12
18
  deploymentProjectNames: string[];
13
19
  includeDevDependencies?: boolean;
@@ -16,6 +22,7 @@ export interface IDeployScenarioJson {
16
22
  linkCreation?: 'default' | 'script' | 'none';
17
23
  folderToCopy?: string;
18
24
  projectSettings?: IDeployScenarioProjectJson[];
25
+ dependencySettings?: IDeployScenarioDependencyJson[];
19
26
  }
20
27
  export declare class DeployScenarioConfiguration {
21
28
  private static _scenarioNameRegExp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rushstack/rush-sdk",
3
- "version": "5.102.0",
3
+ "version": "5.103.0",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,13 +31,13 @@
31
31
  "@types/node": "14.18.36",
32
32
  "@types/semver": "7.5.0",
33
33
  "@types/webpack-env": "1.18.0",
34
- "@microsoft/rush-lib": "5.102.0",
34
+ "@microsoft/rush-lib": "5.103.0",
35
35
  "@rushstack/eslint-config": "3.3.3",
36
36
  "@rushstack/heft": "0.58.2",
37
37
  "@rushstack/heft-node-rig": "2.2.22",
38
- "@rushstack/stream-collator": "4.0.262",
38
+ "@rushstack/stream-collator": "4.0.263",
39
39
  "@rushstack/ts-command-line": "4.15.2",
40
- "@rushstack/terminal": "0.5.37"
40
+ "@rushstack/terminal": "0.5.38"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "heft build --clean",