Skip to content

Commit

Permalink
fix: dependencies (js quic), events and errors versions, changing to …
Browse files Browse the repository at this point in the history
…relative imports, jest dev dependency, js-quic tsconfig

[ci skip]
  • Loading branch information
addievo committed Sep 13, 2023
1 parent 52a64fc commit 7d19ef5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 10 deletions.
7 changes: 4 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"bench": "shx rm -rf ./benches/results && ts-node ./benches"
},
"devDependencies": {
"@swc/core": "^1.3.82",
"@swc/core": "^1.3.62",
"@swc/jest": "^0.2.26",
"@types/jest": "^28.1.3",
"@types/node": "^18.15.0",
Expand All @@ -53,14 +53,15 @@
"ts-node": "^10.9.1",
"tsconfig-paths": "^3.9.0",
"typedoc": "^0.23.21",
"typescript": "^4.9.3"
"typescript": "^4.9.3",
"@fast-check/jest": "^1.1.0"
},
"dependencies": {
"@fast-check/jest": "^1.7.2",
"@matrixai/async-init": "^1.9.1",
"@matrixai/contexts": "^1.2.0",
"@matrixai/id": "^3.3.6",
"@matrixai/logger": "^3.1.0",
"@matrixai/errors" : "^1.2.0",
"@matrixai/events": "^3.0.2",
"@streamparser/json": "^0.0.17",
"ix": "^5.0.0"
Expand Down
14 changes: 7 additions & 7 deletions src/types.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import type { ReadableStream, ReadableWritablePair } from 'stream/web';
import type { ContextTimed, ContextTimedInput } from '@matrixai/contexts';
import type { Id } from '@matrixai/id';
import type { Caller } from '@/callers/Caller';
import type { RawCaller } from '@/callers/RawCaller';
import type { DuplexCaller } from '@/callers/DuplexCaller';
import type { ServerCaller } from '@/callers/ServerCaller';
import type { ClientCaller } from '@/callers/ClientCaller';
import type { UnaryCaller } from '@/callers/UnaryCaller';
import type Handler from '@/handlers/Handler';
import type { Caller } from './callers';
import type { RawCaller } from './callers';
import type { DuplexCaller } from './callers';
import type { ServerCaller } from './callers';
import type { ClientCaller } from './callers';
import type { UnaryCaller } from './callers';
import type Handler from './handlers/Handler';

/**
* This is the JSON RPC request object. this is the generic message type used for the RPC.
Expand Down

0 comments on commit 7d19ef5

Please sign in to comment.