Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

New module structure #62

Merged
merged 2 commits into from
Jun 1, 2024
Merged

New module structure #62

merged 2 commits into from
Jun 1, 2024

Conversation

kitlangton
Copy link
Owner

I've relocated each integration (quill, jsoniter, zio-json, etc.) from being directly under the neotype package—such as neotype.quill—to a new intermediate package named interop. Now, each integration will be found at neotype.interop.quill, and so on.

The reason is simple: If you write import neotype.*, as will often be the case, then you'd have clobbered the namespace of say doobie. As the bare doobie will now reference neotype.doobie and not _root_.doobie. That would've forced you to refer to doobie proper as _root_.doobie, which is no fun at all.

I'm sorry for the breaking change, but it should be a simple matter of find and replace on some import statements ❤️ . I think resolving this awkwardness is worth it.

@kitlangton kitlangton merged commit 1fd2893 into main Jun 1, 2024
4 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant