From 23ce545553939736ddd94718637868fdda082e0a Mon Sep 17 00:00:00 2001 From: Ramon Brullo Date: Tue, 16 Jan 2024 12:50:34 +0100 Subject: [PATCH] refactor: remove unused property --- src/registry-client.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/registry-client.ts b/src/registry-client.ts index b6114c3e..1f26d334 100644 --- a/src/registry-client.ts +++ b/src/registry-client.ts @@ -16,7 +16,6 @@ import { packageReference } from "./types/package-reference"; import { RegistryUrl } from "./types/registry-url"; export type NpmClient = { - rawClient: RegClient.Instance; /** * @throws {NpmClientError} */ @@ -104,8 +103,6 @@ export const getNpmClient = (): NpmClient => { // create client const client = new RegClient({ log }); return { - // The instance of raw npm client - rawClient: client, // Promisified methods get: normalizeClientFunction(client, client.get), adduser: normalizeClientFunction(client, client.adduser),