diff --git a/installing/deps-installer/src/install/index.ts b/installing/deps-installer/src/install/index.ts index e4a0713581..7d37906756 100644 --- a/installing/deps-installer/src/install/index.ts +++ b/installing/deps-installer/src/install/index.ts @@ -1909,9 +1909,9 @@ async function installFromPnpmRegistry ( // headless install blocks until the file is written, then finds it. const wrappedStoreController = { ...opts.storeController, - fetchPackage: async (...args: Parameters) => { + fetchPackage: async (fetchOpts: any) => { // eslint-disable-line @typescript-eslint/no-explicit-any await fileDownloads - return opts.storeController.fetchPackage(...args) + return opts.storeController.fetchPackage(fetchOpts) }, }