@rushstack/rush-sdk 5.120.2 → 5.120.4
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.
|
@@ -174,6 +174,11 @@ export declare class Utilities {
|
|
|
174
174
|
static getRushConfigNotFoundError(): Error;
|
|
175
175
|
static usingAsync<TDisposable extends IDisposable>(getDisposableAsync: () => Promise<TDisposable> | IDisposable, doActionAsync: (disposable: TDisposable) => Promise<void> | void): Promise<void>;
|
|
176
176
|
static trimAfterLastSlash(filePath: string): string;
|
|
177
|
+
/**
|
|
178
|
+
* If the path refers to a symlink, `FileSystem.exists()` would normally test whether the symlink
|
|
179
|
+
* points to a target that exists. By contrast, `existsOrIsBrokenSymlink()` will return true even if
|
|
180
|
+
* the symlink exists but its target does not. */
|
|
181
|
+
static existsOrIsSymlink(linkPath: string): boolean;
|
|
177
182
|
private static _executeLifecycleCommandInternal;
|
|
178
183
|
/**
|
|
179
184
|
* Returns a process.env environment suitable for executing lifecycle scripts.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rushstack/rush-sdk",
|
|
3
|
-
"version": "5.120.
|
|
3
|
+
"version": "5.120.4",
|
|
4
4
|
"description": "An API for interacting with the Rush engine",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -25,16 +25,16 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@types/node-fetch": "2.6.2",
|
|
27
27
|
"tapable": "2.2.1",
|
|
28
|
-
"@rushstack/
|
|
29
|
-
"@rushstack/
|
|
28
|
+
"@rushstack/node-core-library": "4.1.0",
|
|
29
|
+
"@rushstack/terminal": "0.10.1"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@types/semver": "7.5.0",
|
|
33
33
|
"@types/webpack-env": "1.18.0",
|
|
34
|
+
"@microsoft/rush-lib": "5.120.4",
|
|
35
|
+
"local-node-rig": "1.0.0",
|
|
34
36
|
"@rushstack/heft": "0.66.3",
|
|
35
|
-
"@microsoft/rush-lib": "5.120.2",
|
|
36
37
|
"@rushstack/stream-collator": "4.1.41",
|
|
37
|
-
"local-node-rig": "1.0.0",
|
|
38
38
|
"@rushstack/ts-command-line": "4.19.2"
|
|
39
39
|
},
|
|
40
40
|
"scripts": {
|