Skip to content

Commit

Permalink
refactor: omit bunPath from extractPackageApiEffect options
Browse files Browse the repository at this point in the history
  • Loading branch information
velut committed Mar 18, 2024
1 parent 97ada71 commit 9d14c6f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/extract-package-api-effect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const extractPackageApiEffect = ({
pkg,
subpath = ".",
maxDepth = 5,
}: ExtractPackageApiOptions) =>
}: Omit<ExtractPackageApiOptions, "bunPath">) =>
Effect.gen(function* (_) {
const startTime = performance.now();
const pkgName = yield* _(packageName(pkg));
Expand Down

0 comments on commit 9d14c6f

Please sign in to comment.