Dependencies upgrade

This commit is contained in:
Julien Valverdé
2024-07-02 16:57:47 +02:00
parent dfba7ac01b
commit fc73afe9d2
5 changed files with 6 additions and 6 deletions

BIN
bun.lockb

Binary file not shown.

View File

@@ -6,6 +6,6 @@
"devDependencies": { "devDependencies": {
"npm-check-updates": "^16.14.20", "npm-check-updates": "^16.14.20",
"npm-sort": "^0.0.4", "npm-sort": "^0.0.4",
"typescript": "^5.5.2" "typescript": "^5.5.3"
} }
} }

View File

@@ -7,7 +7,7 @@
}, },
"private": true, "private": true,
"dependencies": { "dependencies": {
"@effect/rpc": "^0.31.17", "@effect/rpc": "^0.31.18",
"@effect/schema": "^0.68.15", "@effect/schema": "^0.68.15",
"@thilawyn/thilalib": "^0.1.4", "@thilawyn/thilalib": "^0.1.4",
"effect": "^3.4.6" "effect": "^3.4.6"

View File

@@ -3,9 +3,9 @@
"type": "module", "type": "module",
"private": true, "private": true,
"dependencies": { "dependencies": {
"@effect/platform": "^0.58.17", "@effect/platform": "^0.58.18",
"@effect/platform-bun": "^0.38.16", "@effect/platform-bun": "^0.38.17",
"@effect/rpc-http": "^0.29.17", "@effect/rpc-http": "^0.29.18",
"@effect/schema": "^0.68.15", "@effect/schema": "^0.68.15",
"@thilawyn/thilalib": "^0.1.4", "@thilawyn/thilalib": "^0.1.4",
"@todo-tests/common": "workspace:*", "@todo-tests/common": "workspace:*",

View File

@@ -33,7 +33,7 @@ const testRouter = Effect.gen(function*() {
test1: t.procedure.query( test1: t.procedure.query(
(opts) => run(Effect.gen(function*() { (opts) => run(Effect.gen(function*() {
const todos = yield* TodoRepository // const todos = yield* TodoRepository
return "test" return "test"
})) }))
), ),