Skip to content

Commit db66d76

Browse files
committed
sentry/node & sentry/tracing & whatwg-node/fetch & fix figures
1 parent 6a02e63 commit db66d76

File tree

4 files changed

+716
-69
lines changed

4 files changed

+716
-69
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@
4141
"test": "vitest"
4242
},
4343
"dependencies": {
44-
"@sentry/node": "7.74.1",
45-
"@sentry/tracing": "7.74.1",
46-
"@whatwg-node/fetch": "0.9.13",
44+
"@sentry/node": "8.4.0",
45+
"@sentry/tracing": "7.114.0",
46+
"@whatwg-node/fetch": "0.9.17",
4747
"husky": "8.0.3",
4848
"immer": "10.0.2",
4949
"js-yaml": "4.1.0",

packages/commands/similar/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
parseGlobalArgs,
1010
} from '@graphql-inspector/commands';
1111
import { similar as findSimilar, getTypePrefix, Rating, SimilarMap } from '@graphql-inspector/core';
12-
import { chalk, figures, Logger } from '@graphql-inspector/logger';
12+
import { chalk, fallbackSymbols, Logger } from '@graphql-inspector/logger';
1313

1414
export { CommandFactory };
1515

@@ -194,7 +194,7 @@ function printScale(ratio: number): string {
194194

195195
return levels
196196
.map(level => percentage >= level)
197-
.map(enabled => (enabled ? figures.bullet : chalk.gray(figures.bullet)))
197+
.map(enabled => (enabled ? fallbackSymbols.bullet : chalk.gray(fallbackSymbols.bullet)))
198198
.join('');
199199
}
200200

packages/logger/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Transform } from 'node:stream';
33
import chalk from 'chalk';
44
import * as env from 'std-env';
55

6-
export { default as figures } from 'figures';
6+
export { Options, fallbackSymbols, mainSymbols, replaceSymbols } from 'figures';
77
export { default as symbols } from 'log-symbols';
88
export { chalk };
99

0 commit comments

Comments
 (0)