Skip to content

Commit

Permalink
build(transducers-async): fix imports & pkg exports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jun 18, 2024
1 parent d143855 commit edfdba0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/transducers-async/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
},
"files": [
"./*.js",
"./*.d.ts"
"./*.d.ts",
"internal"
],
"exports": {
".": {
Expand Down
2 changes: 1 addition & 1 deletion packages/transducers-async/src/merge.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { __inflightIters, __iterNext } from "./internal/iter";
import { __inflightIters, __iterNext } from "./internal/iter.js";

/**
* Async iterator version of [thi.ng/rstream's merge()
Expand Down
2 changes: 1 addition & 1 deletion packages/transducers-async/src/sync.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { Maybe, NumOrString } from "@thi.ng/api";
import { __inflightIters, __iterNext } from "./internal/iter";
import { __inflightIters, __iterNext } from "./internal/iter.js";

export type SyncSources<T extends Record<NumOrString, any>> = {
[id in keyof T]: AsyncIterable<T[id]>;
Expand Down

0 comments on commit edfdba0

Please sign in to comment.