Skip to content

Commit c7ef174

Browse files
committed
chore(deps): linter issues
1 parent d2b8676 commit c7ef174

File tree

7 files changed

+63
-9
lines changed

7 files changed

+63
-9
lines changed

apps/server/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1+
import { parse } from 'node:url';
12
import { Identity, Inboxes, Messages, SpaceEvents, Utils } from '@graphprotocol/hypergraph';
23
import cors from 'cors';
34
import { Effect, Exit, Schema } from 'effect';
45
import express, { type Request, type Response } from 'express';
5-
import { parse } from 'node:url';
66
import { SiweMessage } from 'siwe';
77
import type { Hex } from 'viem';
88
import WebSocket, { WebSocketServer } from 'ws';

apps/typesync/package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@
4646
"@types/react": "^19.1.1",
4747
"@types/react-dom": "^19.1.3",
4848
"@vitejs/plugin-react": "^4.4.1",
49+
"tsup": "^8.4.0",
4950
"tsx": "^4.19.4",
5051
"vite": "^6.3.4"
5152
},

biome.jsonc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
"routeTree.gen.ts",
1515
"tsconfig.json",
1616
"tsconfig.*.json",
17-
"**/variant-schema.ts"
17+
"**/variant-schema.ts",
18+
"apps/typesync/client/src/generated"
1819
]
1920
},
2021
"formatter": {

package.json

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
"vitest": "^3.0.1"
2323
},
2424
"pnpm": {
25-
"onlyBuiltDependencies": [
26-
"better-sqlite3",
27-
"esbuild"
28-
]
25+
"onlyBuiltDependencies": ["better-sqlite3", "esbuild"]
2926
}
3027
}

packages/hypergraph-react/src/hooks/useExternalSpaceInbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Messages } from '@graphprotocol/hypergraph';
1+
import type { Messages } from '@graphprotocol/hypergraph';
22
import { useCallback, useEffect, useState } from 'react';
33
import { useHypergraphApp, useHypergraphAuth } from '../HypergraphAppContext.js';
44

packages/hypergraph/src/inboxes/message-validation.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Identity, Messages } from '@graphprotocol/hypergraph';
1+
import { Identity, type Messages } from '@graphprotocol/hypergraph';
22
import type { AccountInboxStorageEntry, SpaceInboxStorageEntry } from '../store.js';
33
import { recoverAccountInboxMessageSigner, recoverSpaceInboxMessageSigner } from './recover-inbox-message-signer.js';
44

pnpm-lock.yaml

Lines changed: 56 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)