diff --git a/ng-dev/release/publish/index.ts b/ng-dev/release/publish/index.ts index 2027d450d..6e413a0b2 100644 --- a/ng-dev/release/publish/index.ts +++ b/ng-dev/release/publish/index.ts @@ -205,17 +205,6 @@ export class ReleaseTool { */ private async _verifyNpmLoginState(): Promise { const registry = `NPM at the ${this._config.publishRegistry ?? 'default NPM'} registry`; - // TODO(josephperrott): remove wombat specific block once wombot allows `npm whoami` check to - // check the status of the local token in the .npmrc file. - if (this._config.publishRegistry?.includes('wombat-dressing-room.appspot.com')) { - Log.info('Unable to determine NPM login state for wombat proxy, requiring login now.'); - try { - await NpmCommand.startInteractiveLogin(this._config.publishRegistry); - } catch { - return false; - } - return true; - } if (await NpmCommand.checkIsLoggedIn(this._config.publishRegistry)) { Log.debug(`Already logged into ${registry}.`); return true;