Skip to content

Commit 63ebb2d

Browse files
authored
fix: correct type annotation in PnpmLinkManager for pnpm v11 kit
1 parent b2f46d0 commit 63ebb2d

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

libraries/rush-lib/src/logic/pnpm/PnpmLinkManager.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,7 @@ export class PnpmLinkManager extends BaseLinkManager {
327327
RushConstants.nodeModulesFolderName
328328
);
329329
} else if (this._pnpmVersion.major >= 11) {
330-
const pnpmKitV11: typeof import('@rushstack/rush-pnpm-kit-v10') = require(
331-
'@rushstack/rush-pnpm-kit-v11'
332-
);
330+
const pnpmKitV11: typeof import('@rushstack/rush-pnpm-kit-v11') = require('@rushstack/rush-pnpm-kit-v11');
333331

334332
// project@file+projects+presentation-integration-tests.tgz_jsdom@11.12.0
335333
// The second parameter is max length of virtual store dir,

0 commit comments

Comments
 (0)