@rushstack/rush-sdk 5.120.3 → 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",
3
+ "version": "5.120.4",
4
4
  "description": "An API for interacting with the Rush engine",
5
5
  "repository": {
6
6
  "type": "git",
@@ -31,9 +31,9 @@
31
31
  "devDependencies": {
32
32
  "@types/semver": "7.5.0",
33
33
  "@types/webpack-env": "1.18.0",
34
- "@microsoft/rush-lib": "5.120.3",
35
- "@rushstack/heft": "0.66.3",
34
+ "@microsoft/rush-lib": "5.120.4",
36
35
  "local-node-rig": "1.0.0",
36
+ "@rushstack/heft": "0.66.3",
37
37
  "@rushstack/stream-collator": "4.1.41",
38
38
  "@rushstack/ts-command-line": "4.19.2"
39
39
  },