We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2bf49d commit 05576b7Copy full SHA for 05576b7
libraries/rush-lib/src/utilities/HotlinkManager.ts
@@ -198,7 +198,7 @@ export class HotlinkManager {
198
const packageSourcePath: string = `${consumerPackagePnpmDependenciesFolderPath}/${dirName}/${RushConstants.nodeModulesFolderName}/${packageName}`;
199
if (await FileSystem.existsAsync(packageSourcePath)) {
200
const { version } = await JsonFile.loadAsync(`${packageSourcePath}/${FileConstants.PackageJson}`);
201
- if (semver.satisfies(version, versionRange)) {
+ if (semver.satisfies(version, versionRange, { includePrerelease: true })) {
202
packageSourcePathSet.add(packageSourcePath);
203
}
204
0 commit comments