Skip to content

Commit b0846cb

Browse files
committed
prettier
1 parent fc4661b commit b0846cb

File tree

3 files changed

+26
-71
lines changed

3 files changed

+26
-71
lines changed

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,8 @@
6666
"@graphql-mesh/types": "0.104.4",
6767
"@graphql-mesh/utils": "0.104.4",
6868
"@graphql-tools/delegate": "workspace:^",
69+
"@opentelemetry/otlp-exporter-base@npm:0.202.0": "patch:@opentelemetry/otlp-exporter-base@npm%3A0.202.0#~/.yarn/patches/@opentelemetry-otlp-exporter-base-npm-0.202.0-f6f29c2eeb.patch",
70+
"@rollup/plugin-node-resolve@npm:^15.2.3": "patch:@rollup/plugin-node-resolve@npm%3A16.0.1#~/.yarn/patches/@rollup-plugin-node-resolve-npm-16.0.1-2936474bab.patch",
6971
"@vitest/snapshot": "patch:@vitest/snapshot@npm:3.1.2#~/.yarn/patches/@vitest-snapshot-npm-3.1.1-4d18cf86dc.patch",
7072
"cookie": "^1.0.0",
7173
"cross-spawn": "7.0.6",
@@ -77,8 +79,6 @@
7779
"pkgroll": "patch:pkgroll@npm:2.5.1#~/.yarn/patches/pkgroll-npm-2.5.1-9b062c22ca.patch",
7880
"tar-fs": "3.0.9",
7981
"tsx": "patch:tsx@npm:4.19.3#~/.yarn/patches/tsx-npm-4.19.2-a8f2312a2f.patch",
80-
"vite": "6.3.5",
81-
"@opentelemetry/otlp-exporter-base@npm:0.202.0": "patch:@opentelemetry/otlp-exporter-base@npm%3A0.202.0#~/.yarn/patches/@opentelemetry-otlp-exporter-base-npm-0.202.0-f6f29c2eeb.patch",
82-
"@rollup/plugin-node-resolve@npm:^15.2.3": "patch:@rollup/plugin-node-resolve@npm%3A16.0.1#~/.yarn/patches/@rollup-plugin-node-resolve-npm-16.0.1-2936474bab.patch"
82+
"vite": "6.3.5"
8383
}
8484
}

packages/plugins/opentelemetry/scripts/inject-version.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
21
import { readFile, writeFile } from 'node:fs/promises';
32
import { resolve } from 'node:path';
43
import { fileURLToPath, URL } from 'node:url';

tsconfig.json

Lines changed: 23 additions & 67 deletions
Original file line numberDiff line numberDiff line change
@@ -11,42 +11,22 @@
1111
"exactOptionalPropertyTypes": false,
1212
// packages
1313
"paths": {
14-
"@internal/testing": [
15-
"./internal/testing/src/index.ts"
16-
],
17-
"@internal/e2e": [
18-
"./internal/e2e/src/index.ts"
19-
],
20-
"@internal/proc": [
21-
"./internal/proc/src/index.ts"
22-
],
23-
"@internal/perf": [
24-
"./internal/perf/src/index.ts"
25-
],
26-
"@internal/perf/memtest": [
27-
"./internal/perf/src/memtest.ts"
28-
],
14+
"@internal/testing": ["./internal/testing/src/index.ts"],
15+
"@internal/e2e": ["./internal/e2e/src/index.ts"],
16+
"@internal/proc": ["./internal/proc/src/index.ts"],
17+
"@internal/perf": ["./internal/perf/src/index.ts"],
18+
"@internal/perf/memtest": ["./internal/perf/src/memtest.ts"],
2919
"@internal/testing/to-be-similar-string": [
3020
"./internal/testing/src/to-be-similar-string.ts"
3121
],
3222
"@internal/testing/to-be-similar-gql-doc": [
3323
"./internal/testing/src/to-be-similar-gql-doc.ts"
3424
],
35-
"@internal/testing/fixtures/*": [
36-
"./internal/testing/fixtures/*"
37-
],
38-
"@graphql-hive/importer": [
39-
"./packages/importer/src/index.ts"
40-
],
41-
"@graphql-hive/importer/*": [
42-
"./packages/importer/src/*"
43-
],
44-
"@graphql-hive/gateway": [
45-
"./packages/gateway/src/index.ts"
46-
],
47-
"@graphql-hive/gateway-runtime": [
48-
"./packages/runtime/src/index.ts"
49-
],
25+
"@internal/testing/fixtures/*": ["./internal/testing/fixtures/*"],
26+
"@graphql-hive/importer": ["./packages/importer/src/index.ts"],
27+
"@graphql-hive/importer/*": ["./packages/importer/src/*"],
28+
"@graphql-hive/gateway": ["./packages/gateway/src/index.ts"],
29+
"@graphql-hive/gateway-runtime": ["./packages/runtime/src/index.ts"],
5030
"@graphql-mesh/fusion-runtime": [
5131
"./packages/fusion-runtime/src/index.ts"
5232
],
@@ -59,9 +39,7 @@
5939
"@graphql-mesh/transport-http-callback": [
6040
"./packages/transports/http-callback/src/index.ts"
6141
],
62-
"@graphql-mesh/transport-ws": [
63-
"./packages/transports/ws/src/index.ts"
64-
],
42+
"@graphql-mesh/transport-ws": ["./packages/transports/ws/src/index.ts"],
6543
"@graphql-mesh/hmac-upstream-signature": [
6644
"./packages/plugins/hmac-upstream-signature/src/index.ts"
6745
],
@@ -80,33 +58,17 @@
8058
"@graphql-tools/batch-delegate": [
8159
"./packages/batch-delegate/src/index.ts"
8260
],
83-
"@graphql-tools/batch-execute": [
84-
"./packages/batch-execute/src/index.ts"
85-
],
86-
"@graphql-tools/delegate": [
87-
"./packages/delegate/src/index.ts"
88-
],
89-
"@graphql-tools/federation": [
90-
"./packages/federation/src/index.ts"
91-
],
92-
"@graphql-tools/stitch": [
93-
"./packages/stitch/src/index.ts"
94-
],
61+
"@graphql-tools/batch-execute": ["./packages/batch-execute/src/index.ts"],
62+
"@graphql-tools/delegate": ["./packages/delegate/src/index.ts"],
63+
"@graphql-tools/federation": ["./packages/federation/src/index.ts"],
64+
"@graphql-tools/stitch": ["./packages/stitch/src/index.ts"],
9565
"@graphql-tools/stitching-directives": [
9666
"./packages/stitching-directives/src/index.ts"
9767
],
98-
"@graphql-tools/wrap": [
99-
"./packages/wrap/src/index.ts"
100-
],
101-
"@graphql-tools/executor-*": [
102-
"./packages/executors/*/src/index.ts"
103-
],
104-
"@graphql-hive/logger": [
105-
"./packages/logger/src/index.ts"
106-
],
107-
"@graphql-hive/logger/request": [
108-
"./packages/logger/src/request.ts"
109-
],
68+
"@graphql-tools/wrap": ["./packages/wrap/src/index.ts"],
69+
"@graphql-tools/executor-*": ["./packages/executors/*/src/index.ts"],
70+
"@graphql-hive/logger": ["./packages/logger/src/index.ts"],
71+
"@graphql-hive/logger/request": ["./packages/logger/src/request.ts"],
11072
"@graphql-hive/logger/writers/pino": [
11173
"./packages/logger/src/writers/pino.ts"
11274
],
@@ -122,15 +84,9 @@
12284
"@graphql-hive/plugin-deduplicate-request": [
12385
"./packages/plugins/deduplicate-request/src/index.ts"
12486
],
125-
"@graphql-hive/nestjs": [
126-
"./packages/nestjs/src/index.ts"
127-
],
128-
"@graphql-hive/signal": [
129-
"./packages/signal/src/index.ts"
130-
],
131-
"@graphql-hive/pubsub": [
132-
"./packages/pubsub/src/index.ts"
133-
]
87+
"@graphql-hive/nestjs": ["./packages/nestjs/src/index.ts"],
88+
"@graphql-hive/signal": ["./packages/signal/src/index.ts"],
89+
"@graphql-hive/pubsub": ["./packages/pubsub/src/index.ts"]
13490
}
13591
},
13692
"include": [
@@ -153,4 +109,4 @@
153109
"./e2e/config-syntax-error/gateway.config.ts",
154110
"./e2e/config-syntax-error/custom-resolvers.ts"
155111
]
156-
}
112+
}

0 commit comments

Comments
 (0)