@rushstack/rush-sdk 5.134.0 → 5.135.0-pr4927.1
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 +151 -31
- package/lib/api/CobuildConfiguration.d.ts +5 -0
- package/lib/api/CommonVersionsConfiguration.d.ts +1 -1
- package/lib/api/EnvironmentConfiguration.d.ts +7 -0
- package/lib/api/ExperimentsConfiguration.d.ts +6 -0
- package/lib/api/RushConfiguration.d.ts +49 -13
- package/lib/api/RushProjectConfiguration.d.ts +7 -9
- package/lib/api/Subspace.d.ts +30 -7
- package/lib/api/Variants.d.ts +8 -0
- package/lib/api/Variants.js +1 -0
- package/lib/cli/actions/AddAction.d.ts +2 -1
- package/lib/cli/actions/BaseAddAndRemoveAction.d.ts +1 -1
- package/lib/cli/actions/BaseInstallAction.d.ts +2 -1
- package/lib/cli/actions/CheckAction.d.ts +1 -0
- package/lib/cli/actions/RemoveAction.d.ts +3 -3
- package/lib/cli/actions/UpgradeInteractiveAction.d.ts +1 -0
- package/lib/index.d.ts +1 -0
- package/lib/logic/DependencyAnalyzer.d.ts +2 -2
- package/lib/logic/PackageJsonUpdaterTypes.d.ts +4 -0
- package/lib/logic/RepoStateFile.d.ts +1 -1
- package/lib/logic/RushConstants.d.ts +6 -0
- package/lib/logic/base/BaseInstallManagerTypes.d.ts +4 -0
- package/lib/logic/base/BaseShrinkwrapFile.d.ts +2 -1
- package/lib/logic/npm/NpmShrinkwrapFile.d.ts +1 -1
- package/lib/logic/operations/CacheableOperationPlugin.d.ts +3 -4
- package/lib/logic/operations/IOperationExecutionResult.d.ts +5 -0
- package/lib/logic/operations/OperationExecutionRecord.d.ts +2 -0
- package/lib/logic/operations/ProjectLogWritable.d.ts +103 -49
- package/lib/logic/pnpm/PnpmShrinkwrapFile.d.ts +1 -1
- package/lib/logic/pnpm/PnpmfileConfiguration.d.ts +2 -2
- package/lib/logic/pnpm/SubspacePnpmfileConfiguration.d.ts +2 -2
- package/lib/logic/policy/PolicyValidator.d.ts +1 -1
- package/lib/logic/policy/ShrinkwrapFilePolicy.d.ts +1 -1
- package/lib/logic/versionMismatch/VersionMismatchFinder.d.ts +2 -2
- package/lib/pluginFramework/RushLifeCycle.d.ts +2 -2
- package/lib/utilities/Utilities.d.ts +1 -1
- package/lib-shim/index.js +35 -10
- package/lib-shim/index.js.map +1 -1
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.135.0-pr4927.1",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -35,20 +35,20 @@
|
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@types/node-fetch": "2.6.2",
|
|
37
37
|
"tapable": "2.2.1",
|
|
38
|
-
"@rushstack/lookup-by-path": "0.2.2",
|
|
39
38
|
"@rushstack/node-core-library": "5.9.0",
|
|
39
|
+
"@rushstack/lookup-by-path": "0.2.2",
|
|
40
40
|
"@rushstack/terminal": "0.14.2"
|
|
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.135.0-pr4927.1",
|
|
46
47
|
"@rushstack/heft": "0.67.2",
|
|
48
|
+
"@rushstack/heft-webpack5-plugin": "0.10.12",
|
|
47
49
|
"local-node-rig": "1.0.0",
|
|
48
|
-
"@rushstack/heft-webpack5-plugin": "0.10.11",
|
|
49
|
-
"@microsoft/rush-lib": "5.134.0",
|
|
50
|
-
"@rushstack/ts-command-line": "4.22.8",
|
|
51
50
|
"@rushstack/stream-collator": "4.1.67",
|
|
51
|
+
"@rushstack/ts-command-line": "4.22.8",
|
|
52
52
|
"@rushstack/webpack-preserve-dynamic-require-plugin": "0.11.66"
|
|
53
53
|
},
|
|
54
54
|
"scripts": {
|