Skip to content

Commit

Permalink
fix: bumps graphql version
Browse files Browse the repository at this point in the history
  • Loading branch information
timbru31 authored Apr 19, 2024
1 parent e4cba48 commit c160f45
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import type { Logger } from "winston";
import { createLogger as createWinstonLogger, format, transports } from "winston";
import type { ConfigModel } from "../models/stores/config-model";

export const GRAPHQL_CLIENT_VERSION = "8.40.0";
export const GRAPHQL_CLIENT_VERSION = "8.43.2";

function getEmojiForLevel(level: string) {
switch (colors.stripColors(level)) {
Expand Down Expand Up @@ -94,7 +94,7 @@ export function shuffle<T>(array: T[]): T[] {
}

// eslint-disable-next-line @typescript-eslint/no-empty-function
export function noop(): void {}
export function noop(): void { }

export async function noopPromise(): Promise<void> {
return Promise.resolve();
Expand Down

0 comments on commit c160f45

Please sign in to comment.