Skip to content

Commit 5f2aa17

Browse files
committed
fix: version resolver cache key
1 parent 561d873 commit 5f2aa17

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/builder.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -406,7 +406,7 @@ export class PackageVersionBuilder implements IPackageVersionBuilder {
406406
includeOperations?: boolean,
407407
includeSummary?: boolean,
408408
): Promise<VersionCache | null> {
409-
const compositeKey = getCompositeKey(packageId, version)
409+
const compositeKey = getCompositeKey(packageId, version, String(includeOperations), String(includeSummary))
410410

411411
if (this.canBeResolvedLocally(version, packageId)) {
412412
return this.currentVersion

0 commit comments

Comments
 (0)