Skip to content

Commit e6da8df

Browse files
committed
update
1 parent 2d294a1 commit e6da8df

File tree

8 files changed

+40
-40
lines changed

8 files changed

+40
-40
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
"ts-node": "10.9.2",
9494
"tsup": "8.2.4",
9595
"tsx": "4.18.0",
96-
"turbo": "1.13.4",
96+
"turbo": "2.1.3",
9797
"typescript": "5.5.4",
9898
"vite-tsconfig-paths": "5.0.1",
9999
"vitest": "2.0.5"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version = '0.37.0';
1+
export const version = '0.38.0';

packages/services/transmission/package.json

-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@
1010
"typecheck": "tsc --noEmit"
1111
},
1212
"devDependencies": {
13-
"@hive/api": "workspace:*",
1413
"@hive/service-common": "workspace:*",
1514
"@hive/storage": "workspace:*",
1615
"@sentry/node": "7.119.0",

packages/services/transmission/src/lib/monthly-deduplication.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
import { pgSql, Storage } from '@hive/api';
1+
import { pgSql } from '../../../api/src/index.js';
2+
import type { Storage } from '../../../api/src/modules/shared/providers/storage.js';
23
import { createTask } from './utils.js';
34

45
export const monthlyDeduplicationCleanupTask = createTask(null, async (_, helpers) => {

packages/services/transmission/src/lib/trpc.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
import type { Runner } from 'graphile-worker';
22
import { z } from 'zod';
3-
import type { Storage } from '@hive/api';
43
import { FastifyRequest, handleTRPCError } from '@hive/service-common';
54
import { initTRPC } from '@trpc/server';
5+
import type { Storage } from '../../../api/src/modules/shared/providers/storage.js';
66
import { addJob, type TaskSchemas } from '../tasks.js';
77
import { ensureMonthlyDedupeKey, rollbackMonthlyDedupeKey } from './monthly-deduplication.js';
88

packages/services/transmission/src/lib/utils.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
} from 'graphile-worker';
1111
import type { Client } from 'pg';
1212
import { z, ZodSchema } from 'zod';
13-
import type { Storage } from '@hive/api';
13+
import type { Storage } from '../../../api/src/modules/shared/providers/storage.js';
1414

1515
export const createTask = <ZodType extends ZodSchema | null>(
1616
schema: ZodType,

pnpm-lock.yaml

+29-29
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

turbo.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -11,24 +11,24 @@
1111
"scripts/templates/runify-next.ts",
1212
"patches/*"
1313
],
14-
"pipeline": {
14+
"tasks": {
1515
"build": {
1616
"dependsOn": ["^build"],
1717
"outputs": ["dist/**"]
1818
},
19-
"@hive/libraries/core#build": {
19+
"@graphql-hive/core#build": {
2020
"dependsOn": ["^build"],
2121
"outputs": ["dist/**"]
2222
},
23-
"@hive/libraries/apollo#build": {
23+
"@graphql-hive/apollo#build": {
2424
"dependsOn": ["^build"],
2525
"outputs": ["dist/**"]
2626
},
27-
"@hive/libraries/yoga#build": {
27+
"@graphql-hive/yoga#build": {
2828
"dependsOn": ["^build"],
2929
"outputs": ["dist/**"]
3030
},
31-
"@hive/libraries/envelop#build": {
31+
"@graphql-hive/envelop#build": {
3232
"dependsOn": ["^build"],
3333
"outputs": ["dist/**"]
3434
},

0 commit comments

Comments
 (0)