Skip to content

Commit

Permalink
[dsch] fix for esm imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DScheglov committed Sep 28, 2024
1 parent 6b7382d commit 404fd6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/Ok.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { resolveOks } from './resolve-oks';
import { resolveOks } from './resolve-oks.js';
import type { AsyncOk, ErrTypeOf, Ok, ResolveOks, Result } from './types';

export class OkImpl<T> implements Ok<T> {
Expand Down
10 changes: 5 additions & 5 deletions src/fn/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
export * from './assertNever';
export * from './compose';
export * from './identity';
export * from './pipe';
export * from './unreachable';
export * from './assertNever.js';
export * from './compose.js';
export * from './identity.js';
export * from './pipe.js';
export * from './unreachable.js';

0 comments on commit 404fd6e

Please sign in to comment.