File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -242,6 +242,7 @@ async function expandTagRow(tag: string) {
242242 const allVersions = await loadAllVersions ()
243243 processLoadedVersions (allVersions )
244244 } catch (error ) {
245+ // oxlint-disable-next-line no-console -- error logging
245246 console .error (' Failed to load versions:' , error )
246247 } finally {
247248 loadingTags .value .delete (tag )
@@ -266,6 +267,7 @@ async function expandOtherVersions() {
266267 const allVersions = await loadAllVersions ()
267268 processLoadedVersions (allVersions )
268269 } catch (error ) {
270+ // oxlint-disable-next-line no-console -- error logging
269271 console .error (' Failed to load versions:' , error )
270272 } finally {
271273 otherVersionsLoading .value = false
Original file line number Diff line number Diff line change @@ -50,11 +50,13 @@ const main = defineCommand({
5050
5151 if ( ! npmUser ) {
5252 logWarning ( 'Not logged in to npm. Starting npm login...' )
53- console . log ( ) // Add spacing before npm login prompt
53+ // oxlint-disable-next-line no-console -- deliberate spacing
54+ console . log ( )
5455
5556 const loginSuccess = await runNpmLogin ( )
5657
57- console . log ( ) // Add spacing after npm login
58+ // oxlint-disable-next-line no-console -- deliberate spacing
59+ console . log ( )
5860
5961 if ( ! loginSuccess ) {
6062 logWarning ( 'npm login failed or was cancelled.' )
You can’t perform that action at this time.
0 commit comments