We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 60e266a + af8d757 commit 71a3eb4Copy full SHA for 71a3eb4
code/core/src/common/js-package-manager/JsPackageManager.ts
@@ -418,7 +418,7 @@ export abstract class JsPackageManager {
418
.find((version) => satisfies(version, constraint));
419
invariant(
420
latestVersionSatisfyingTheConstraint != null,
421
- 'No version satisfying the constraint.'
+ `No version satisfying the constraint: ${packageName}${constraint}`
422
);
423
return latestVersionSatisfyingTheConstraint;
424
}
0 commit comments