Skip to content

Commit

Permalink
fix types
Browse files Browse the repository at this point in the history
  • Loading branch information
leonitousconforti committed Mar 4, 2025
1 parent 5ee8e99 commit 1350043
Show file tree
Hide file tree
Showing 3 changed files with 140 additions and 7 deletions.
4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
"update-blobs": "tsx ./scripts/update-blobs.ts"
},
"dependencies": {
"eftar": "0.0.14"
"eftar": "0.0.16"
},
"devDependencies": {
"@babel/cli": "7.26.4",
Expand All @@ -59,6 +59,7 @@
"@effect/cli": "0.56.6",
"@effect/docgen": "0.5.2",
"@effect/eslint-plugin": "0.3.0",
"@effect/experimental": "0.41.6",
"@effect/language-service": "0.3.2",
"@effect/platform": "0.77.6",
"@effect/platform-browser": "0.56.1",
Expand Down Expand Up @@ -105,6 +106,7 @@
"ws": "8.18.1"
},
"peerDependencies": {
"@effect/experimental": "0.41.6",
"@effect/platform": "0.77.6",
"effect": "3.13.6"
},
Expand Down
137 changes: 132 additions & 5 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion src/engines/Dind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import * as Number from "effect/Number";
import * as Option from "effect/Option";
import * as ParseResult from "effect/ParseResult";
import * as Schedule from "effect/Schedule";
import * as Schema from "effect/Schema";
import * as Scope from "effect/Scope";
import * as Stream from "effect/Stream";
import * as String from "effect/String";
Expand Down Expand Up @@ -115,7 +116,10 @@ const downloadDindCertificates = (
const readAndAssemble = (
path: string
): (<E, R>(
data: HashMap.HashMap<TarCommon.TarHeader, Stream.Stream<Uint8Array, E, R>>
data: HashMap.HashMap<
Schema.Schema.Type<(typeof TarCommon.TarHeader)["non-full"]>,
Stream.Stream<Uint8Array, E, R>
>
) => Effect.Effect<string, E, R>) =>
Function.flow(
HashMap.findFirst((_stream, header) => header.filename === path),
Expand Down

0 comments on commit 1350043

Please sign in to comment.