@rushstack/rush-sdk 5.100.2 → 5.101.0-pr3949.3
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/README.md +97 -5
- package/dist/loader.d.ts +92 -0
- package/dist/rush-lib.d.ts +292 -10
- package/dist/rush-sdk.d.ts +92 -0
- package/dist/tsdoc-metadata.json +11 -0
- package/lib/api/CobuildConfiguration.d.ts +71 -0
- package/lib/api/CobuildConfiguration.js +1 -0
- package/lib/api/EnvironmentConfiguration.d.ts +61 -0
- package/lib/index.d.ts +3 -1
- package/lib/logic/RushConstants.d.ts +4 -0
- package/lib/logic/buildCache/ProjectBuildCache.d.ts +5 -4
- package/lib/logic/cobuild/CobuildLock.d.ts +43 -0
- package/lib/logic/cobuild/CobuildLock.js +1 -0
- package/lib/logic/cobuild/DisjointSet.d.ts +28 -0
- package/lib/logic/cobuild/DisjointSet.js +1 -0
- package/lib/logic/cobuild/ICobuildLockProvider.d.ts +99 -0
- package/lib/logic/cobuild/ICobuildLockProvider.js +1 -0
- package/lib/logic/deploy/DeployScenarioConfiguration.d.ts +2 -0
- package/lib/logic/operations/AsyncOperationQueue.d.ts +23 -4
- package/lib/logic/operations/CacheableOperationPlugin.d.ts +30 -0
- package/lib/logic/operations/CacheableOperationPlugin.js +1 -0
- package/lib/logic/operations/IOperationExecutionResult.d.ts +4 -0
- package/lib/logic/operations/IOperationRunner.d.ts +27 -8
- package/lib/logic/operations/OperationExecutionManager.d.ts +5 -0
- package/lib/logic/operations/OperationExecutionRecord.d.ts +8 -1
- package/lib/logic/operations/OperationMetadataManager.d.ts +3 -1
- package/lib/logic/operations/OperationRunnerHooks.d.ts +52 -0
- package/lib/logic/operations/OperationRunnerHooks.js +1 -0
- package/lib/logic/operations/OperationStateFile.d.ts +2 -0
- package/lib/logic/operations/OperationStatus.d.ts +8 -0
- package/lib/logic/operations/PeriodicCallback.d.ts +20 -0
- package/lib/logic/operations/PeriodicCallback.js +1 -0
- package/lib/logic/operations/ShellOperationRunner.d.ts +6 -14
- package/lib/logic/pnpm/PnpmShrinkwrapFile.d.ts +5 -0
- package/lib/pluginFramework/PhasedCommandHooks.d.ts +20 -3
- package/lib/pluginFramework/RushSession.d.ts +11 -2
- package/lib-shim/helpers.d.ts +21 -0
- package/lib-shim/helpers.d.ts.map +1 -0
- package/lib-shim/helpers.js +83 -0
- package/lib-shim/helpers.js.map +1 -0
- package/lib-shim/index.d.ts.map +1 -1
- package/lib-shim/index.js +44 -86
- package/lib-shim/index.js.map +1 -1
- package/lib-shim/loader.d.ts +86 -0
- package/lib-shim/loader.d.ts.map +1 -0
- package/lib-shim/loader.js +189 -0
- package/lib-shim/loader.js.map +1 -0
- package/package.json +21 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.101.0-pr3949.3",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -10,22 +10,34 @@
|
|
|
10
10
|
"homepage": "https://rushjs.io",
|
|
11
11
|
"main": "lib-shim/index.js",
|
|
12
12
|
"typings": "dist/rush-lib.d.ts",
|
|
13
|
+
"exports": {
|
|
14
|
+
".": "./lib-shim/index.js",
|
|
15
|
+
"./loader": "./lib-shim/loader.js"
|
|
16
|
+
},
|
|
17
|
+
"typesVersions": {
|
|
18
|
+
"*": {
|
|
19
|
+
"loader": [
|
|
20
|
+
"./dist/loader.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
13
24
|
"license": "MIT",
|
|
14
25
|
"dependencies": {
|
|
15
26
|
"@types/node-fetch": "2.6.2",
|
|
16
27
|
"tapable": "2.2.1",
|
|
17
|
-
"@rushstack/node-core-library": "3.59.
|
|
28
|
+
"@rushstack/node-core-library": "3.59.7"
|
|
18
29
|
},
|
|
19
30
|
"devDependencies": {
|
|
31
|
+
"@types/node": "14.18.36",
|
|
20
32
|
"@types/semver": "7.5.0",
|
|
21
33
|
"@types/webpack-env": "1.18.0",
|
|
22
|
-
"@microsoft/rush-lib": "5.
|
|
23
|
-
"@rushstack/eslint-config": "3.3.
|
|
24
|
-
"@rushstack/heft": "0.58.
|
|
25
|
-
"@rushstack/heft-node-rig": "2.2.
|
|
26
|
-
"@rushstack/stream-collator": "4.0.
|
|
27
|
-
"@rushstack/ts-command-line": "4.15.
|
|
28
|
-
"@rushstack/terminal": "0.5.
|
|
34
|
+
"@microsoft/rush-lib": "5.101.0-pr3949.3",
|
|
35
|
+
"@rushstack/eslint-config": "3.3.3",
|
|
36
|
+
"@rushstack/heft": "0.58.2",
|
|
37
|
+
"@rushstack/heft-node-rig": "2.2.22",
|
|
38
|
+
"@rushstack/stream-collator": "4.0.262",
|
|
39
|
+
"@rushstack/ts-command-line": "4.15.2",
|
|
40
|
+
"@rushstack/terminal": "0.5.37"
|
|
29
41
|
},
|
|
30
42
|
"scripts": {
|
|
31
43
|
"build": "heft build --clean",
|